add bash script

The bash script is required to properly start the program
This commit is contained in:
Andreas Zweili 2017-03-12 20:26:28 +01:00
parent 2725b5c771
commit 4eea8d889f
51 changed files with 6 additions and 0 deletions

2
price_checker.py Normal file → Executable file
View File

@ -67,3 +67,5 @@ while not budget.compare_prices(current_price):
print ('[%s]' % ', '.join(map(str, current_price)))
result = budget.compare_prices(current_price)
time.sleep(60)
else:
print (tui.url)

4
price_checker.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
source bin/activate
./price_checker.py
exit 0