diff options
author | Michael Meeks <michael.meeks@suse.com> | 2011-10-27 12:54:13 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-10-27 12:54:47 +0100 |
commit | 8418eeb79ba0036db466c6e5e26becfb21b6da88 (patch) | |
tree | 312c4061b6a48907083f25082a9ffa1c3b5e3e8e | |
parent | c17aeee2d97fdc5ff941aae66dd01d6a58386f89 (diff) |
'g' tool: fix silly error in --set-last-working
-rwxr-xr-x | g | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -246,7 +246,7 @@ for REPO in $DIRS ; do elif [ -d "$DIR" -a "z$SET_LAST_WORKING" != "z" ]; then echo "fetching notes for $REPO ..." (cd $DIR && git fetch origin 'refs/notes/*:refs/notes/*') - (cd $DIR && git note add -m 'win32 working build') + (cd $DIR && git notes add -m 'win32 working build') elif [ -d "$DIR" -a "z$PUSH_NOTES" != "z" ]; then echo "pushing notes for $REPO ..." (cd $DIR && git push origin 'refs/notes/*:refs/notes/*') |