diff options
author | Glen Barber <gjb@FreeBSD.org> | 2020-12-13 20:08:33 +0000 |
---|---|---|
committer | Glen Barber <gjb@FreeBSD.org> | 2020-12-13 20:08:33 +0000 |
commit | 41c404416f388900b5740efc6fbe96df10e860cc (patch) | |
tree | e015712c72d16820dc27faf84ebb9cb424a41982 /share | |
parent | 6d605a5aa5277260f9cd760dca016817e51f9f97 (diff) | |
download | doc-41c404416f388900b5740efc6fbe96df10e860cc.tar.gz doc-41c404416f388900b5740efc6fbe96df10e860cc.zip |
Fix argument order from previous commit.
Sponsored by: Rubicon Communications, LLC (netgate.com)
Diffstat (limited to 'share')
-rwxr-xr-x | share/tools/webupdate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/tools/webupdate b/share/tools/webupdate index b0ccc19eda..e8fe19f6fd 100755 --- a/share/tools/webupdate +++ b/share/tools/webupdate @@ -143,7 +143,7 @@ else #svn cleanup $dir >> $LOGFILE 2>&1 || exit 2; #svn update --accept theirs-full $dir >> $LOGFILE 2>&1 || exit 2; git -C main clean -f >> $LOGFILE 2>&1 || exit 2; - git -C main --rebase pull >> $LOGFILE 2>&1 || exit 2; + git -C main pull --rebase >> $LOGFILE 2>&1 || exit 2; done fi |