Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.

Commit 62f96ef

Browse files
committed
Fix for issue #789
1 parent e4e0497 commit 62f96ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/upgrade.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ def upgrade_crs(crs_directory, quiet):
3333

3434
# Do a git 'git pull'
3535
os.chdir(crs_directory)
36-
gitcmd = "git pull origin HEAD --ff-only"
36+
gitcmd = "git pull --ff-only origin HEAD"
3737
try:
38-
git_output = check_output(gitcmd, stderr=STDOUT, shell=True)
38+
git_output = check_output(gitcmd, stderr=STDOUT, shell=True)
3939
returncode = 0
4040
except CalledProcessError as ex:
4141
git_output = ex.output

0 commit comments

Comments
 (0)