install.sh 265 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
#!/bin/bash

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