Skip to content

Commit

Permalink
new file: .gitignore
Browse files Browse the repository at this point in the history
	deleted:    greg.bat
	modified:   lb.py
  • Loading branch information
wish13yt committed Oct 19, 2024
1 parent 674d782 commit e4469ae
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
easyexec/
18 changes: 0 additions & 18 deletions greg.bat

This file was deleted.

19 changes: 18 additions & 1 deletion lb.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,24 @@ def cls():
print("Welcome! Packing is a package manager for LigmaBalls.")
print("This desert is very dry.. Upload something with the link below!")
print("https://github.com/Freakybob-Team/packign")
code()
print("Current options:")
print("easyexec")
choice = input("What package would you like to download?")
if (choice == "easyexec"):
url = 'https://github.com/Freakybob-Team/packign/blob/main/easyexec/launch.bat?raw=true'
response = requests.get(url)
file_Path = 'easyexec/launch.bat'
if response.status_code == 200:
os.mkdir("easyexec")
with open(file_Path, 'wb') as file:
file.write(response.content)
print('File downloaded successfully')
file.close()
code()
else:
print('Failed to download file')
print("Bringing you back...")
code()
if (command == "ping"):
server = "google.com"
try:
Expand Down

0 comments on commit e4469ae

Please sign in to comment.