mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 17:08:25 +00:00
Update hackingtool.py
This commit is contained in:
parent
bf5c1c9090
commit
8dff887a4b
1 changed files with 2 additions and 1 deletions
|
|
@ -74,7 +74,8 @@ class AllTools(HackingToolsCollection):
|
|||
if __name__ == "__main__":
|
||||
try:
|
||||
if system() == 'Linux':
|
||||
fpath = "~/hackingtoolpath.txt"
|
||||
# Testing platforms like GitHub Actions define a $CI environment variable
|
||||
fpath = "/tmp/hackingtoolpath.txt" if os.getenv("CI") else "/home/hackingtoolpath.txt"
|
||||
if not os.path.exists(fpath):
|
||||
os.system('clear')
|
||||
# run.menu()
|
||||
|
|
|
|||
Loading…
Reference in a new issue