install.sh 264 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
#!/bin/bash

rusty1s's avatar
rusty1s committed
3
if [ "${TRAVIS_OS_NAME}" != "windows" ]; then
rusty1s's avatar
typo  
rusty1s committed
4
  python setup.py install
rusty1s's avatar
rusty1s committed
5
else
rusty1s's avatar
typo  
rusty1s committed
6
  echo "python setup.py install"
rusty1s's avatar
rusty1s committed
7
  while sleep 30; do echo "=====[ Still running after $SECONDS seconds ]====="; done &
rusty1s's avatar
typo  
rusty1s committed
8
  python setup.py install | tail -n 1000
rusty1s's avatar
rusty1s committed
9
10
  kill %1
fi