Skip to content

Commit 24a2f60

Browse files
committed
[push-over] Remove exit
1 parent 923fc0f commit 24a2f60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

push_over/download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def run_command(command: List[str], verbose: bool) -> Optional[str]:
1818
except subprocess.CalledProcessError as e:
1919
if verbose:
2020
print(e.stderr)
21-
exit(1)
21+
return None
2222

2323

2424
def setup(verbose: bool = False):
@@ -39,7 +39,7 @@ def setup(verbose: bool = False):
3939
verbose,
4040
)
4141

42-
if not has_fork:
42+
if has_fork != "true":
4343
run_command(
4444
[
4545
"gh",

0 commit comments

Comments
 (0)