]> sipb.mit.edu Git - ikiwiki.git/blobdiff - ikiwiki-makerepo
img: Support a title attribute, will be passed through to html. Closes: #478718
[ikiwiki.git] / ikiwiki-makerepo
index dd23b4638a88b76367e638719d4e58247b8edfed..6ae3e28a3a7ee8a9cdc8bd769439c7e8433406cb 100755 (executable)
@@ -25,7 +25,7 @@ if [ "$rcs" != mercurial ] && [ "$rcs" != bzr ]; then
                echo "repository $repository already exists, aborting" >&2 
                exit 1
        fi
-       repository="$(perl -e 'use Cwd q{abs_path}; print abs_path(shift)' $repository)"
+       repository="$(perl -e 'use Cwd q{abs_path}; $r=shift; $r=~s/\/*$//; print abs_path($r)' $repository)"
        if [ -z "$repository" ]; then
                echo "internal error finding repository abs_path" >&2
                exit 1
@@ -62,6 +62,7 @@ git)
        git commit -m "initial commit"
        git remote add origin "$repository"
        git config branch.master.merge refs/heads/master
+       git config branch.master.remote origin
        git push --all
        echo "Directory $srcdir is now a clone of $rcs repository $repository"
 ;;