X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=blobdiff_plain;f=archive.sh;fp=archive.sh;h=7522747b0dacb84ea44bc4d92c85521a599b0647;hp=ede6c7ecaf52864ef655adb3d670490bbb6e5593;hb=41b1c42d3657c8804671f2df46ec8cc9a98f0143;hpb=b6b51b27e20134cbf58ee64031d32fa66d86a449 diff --git a/archive.sh b/archive.sh index ede6c7e..7522747 100755 --- a/archive.sh +++ b/archive.sh @@ -28,6 +28,13 @@ git_clone() { ( cd "$2" && git remote rm origin && git gc ) } + +# Don't overwrite an existing file/directory. +if test -e tmp; then + echo "tmp/ already exists!" + exit 1 +fi + git_clone . tmp/dotfiles for name in browser shell vcs vim x11; do echo "cloning $name to tmp/"