We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348a4d0 commit 9adc25cCopy full SHA for 9adc25c
src/Utilities/git_utilities.py
@@ -11,7 +11,7 @@ def check_git_on_device():
11
def git_action(*args):
12
if len(args) == 2 and args[0] == "pull":
13
pull_proc_out = check_output(["git", args[0]], cwd=args[1])
14
- if (pull_proc_out.decode('utf-8')).count("Already up to date.") == 1:
+ if (pull_proc_out.decode('utf-8')).count("Already up-to-date.") == 1:
15
return True
16
17
elif len(args) == 3 and args[0] == "clone":
0 commit comments