X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=cmd-rename.sh;h=34e7f494ed000989276cad428d81a97316e995d3;hb=babfaba23d530e2818db62161825a65e582adbdc;hp=ada33fb51d13999319f438db3f8437713330a9a3;hpb=8ac93bc98f5e868e890e1a740df9f0c6513189c8;p=git.git diff --git a/cmd-rename.sh b/cmd-rename.sh index ada33fb5..34e7f494 100755 --- a/cmd-rename.sh +++ b/cmd-rename.sh @@ -4,7 +4,10 @@ test -d "$d" || exit while read old new do rm -f "$d/$old" - ln -s "$new" "$d/$old" + if test -f "$d/$new" + then + ln -s "$new" "$d/$old" || exit + fi done <<\EOF git-add-script git-add git-archimport-script git-archimport @@ -49,7 +52,3 @@ git-update-cache git-update-index git-convert-cache git-convert-objects git-fsck-cache git-fsck-objects EOF - -# These two are a bit more than symlinks now. -# git-ssh-push git-ssh-upload -# git-ssh-pull git-ssh-fetch