"vscode:/vscode.git/clone" did not exist on "1bd594b2fab7a6945f90df2e7caa4d5701d4a48e"
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