From: Anthony PERARD Date: Thu, 13 Oct 2022 13:05:04 +0000 (+0100) Subject: git-checkout.sh: handle running git-checkout from a different directory X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~125 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4834dd5521a36cec118ed84b7c09a509edaafa6b;p=xen.git git-checkout.sh: handle running git-checkout from a different directory "$DIR" might not be a full path and it might not have `pwd` as ".." directory. So use `cd -` to undo the first `cd` command. Also, use `basename` to make a symbolic link with a relative path. This doesn't matter yet but it will when for example the commands to clone OVMF is been run from tools/ rather than tools/firmware/. Signed-off-by: Anthony PERARD Acked-by: Andrew Cooper Release-acked-by: Henry Wang --- diff --git a/scripts/git-checkout.sh b/scripts/git-checkout.sh index 20ae31ff23..fd4425ac4e 100755 --- a/scripts/git-checkout.sh +++ b/scripts/git-checkout.sh @@ -19,9 +19,9 @@ if test \! -d $DIR-remote; then cd $DIR-remote.tmp $GIT branch -D dummy >/dev/null 2>&1 ||: $GIT checkout -b dummy $TAG - cd .. + cd - fi mv $DIR-remote.tmp $DIR-remote fi rm -f $DIR -ln -sf $DIR-remote $DIR +ln -sf $(basename $DIR-remote) $DIR