mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-24 23:09:42 -05:00
Typo
This commit is contained in:
parent
731d6391c3
commit
a8ef55550f
@ -24,7 +24,7 @@ def main():
|
||||
desktop_dir = os.path.join(root, "desktop")
|
||||
|
||||
print("○ Clean up from last build")
|
||||
if os.path.exist(os.path.join(cli_dir, "dist")):
|
||||
if os.path.exists(os.path.join(cli_dir, "dist")):
|
||||
shutil.rmtree(os.path.join(cli_dir, "dist"))
|
||||
if os.path.exists(os.path.join(desktop_dir, "linux")):
|
||||
shutil.rmtree(os.path.join(desktop_dir, "linux"))
|
||||
|
@ -34,7 +34,7 @@ def main():
|
||||
desktop_dir = os.path.join(root, "desktop")
|
||||
|
||||
print("○ Clean up from last build")
|
||||
if os.path.exist(os.path.join(cli_dir, "dist")):
|
||||
if os.path.exists(os.path.join(cli_dir, "dist")):
|
||||
shutil.rmtree(os.path.join(cli_dir, "dist"))
|
||||
if os.path.exists(os.path.join(desktop_dir, "macOS")):
|
||||
shutil.rmtree(os.path.join(desktop_dir, "macOS"))
|
||||
|
@ -24,7 +24,7 @@ def main():
|
||||
desktop_dir = os.path.join(root, "desktop")
|
||||
|
||||
print("○ Clean up from last build")
|
||||
if os.path.exist(os.path.join(cli_dir, "dist")):
|
||||
if os.path.exists(os.path.join(cli_dir, "dist")):
|
||||
shutil.rmtree(os.path.join(cli_dir, "dist"))
|
||||
if os.path.exists(os.path.join(desktop_dir, "windows")):
|
||||
shutil.rmtree(os.path.join(desktop_dir, "windows"))
|
||||
|
Loading…
Reference in New Issue
Block a user