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

if [ "${TRAVIS_OS_NAME}" != "windows" ]; then
  python setup.py install
else
  echo "python setup.py install"
  while sleep 9m; do echo "=====[ $SECONDS seconds still running ]====="; done &
  python setup.py install &> /dev/null
fi