Compare commits
2 Commits
dd9d2fff18
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| c21ab4b334 | |||
| 6398ed8e86 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -66,6 +66,9 @@ db.sqlite3-journal
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# installed tools
|
||||
resources/
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
|
||||
19
main.py
Normal file
19
main.py
Normal file
@@ -0,0 +1,19 @@
|
||||
import os
|
||||
|
||||
print("WARNING:")
|
||||
print("This only works on Linux. Git must be installed.")
|
||||
print("This script will clone tools into the resources/ directory.")
|
||||
print("Continue? (y/n)")
|
||||
comfirmed = input()
|
||||
|
||||
if comfirmed == "y":
|
||||
print("Linus T would be proud.")
|
||||
print("\nInstalling/Updating tools...\n")
|
||||
os.system("rm -rf resources; mkdir resources; cd resources; pwd; git clone https://kevinblog.sytes.net/Code/Kevin/JiboAutoMod.git; git clone https://kevinblog.sytes.net/Code/ZaneDev/JiboPhotoExport.git")
|
||||
print("\nTools installed/updated successfully.")
|
||||
print("\nApplication will now start...\nDO NOT CLOSE THE TERMINAL OR THE APPLICATION WILL CRASH!!\nIF YOU ARE MODIFYING YOUR JIBO DO NOT CLOSE THE TERMINAL OR HE MIGHT BREAK!!!!!\nYOU ARE RESPONSIBLE FOR ANY DAMAGES MADE TO YOUR DEVICE!!!")
|
||||
else:
|
||||
print("Exiting...")
|
||||
exit()
|
||||
|
||||
# this is where the GUI would start if we had one right now
|
||||
Reference in New Issue
Block a user