X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=archive.sh;h=1cfaf93bbbe03e3490633197429eb2abf0c70366;hb=f2ae0a2fdd20981164c1a10b0be4c354234610b0;hp=ede6c7ecaf52864ef655adb3d670490bbb6e5593;hpb=b6b51b27e20134cbf58ee64031d32fa66d86a449;p=config%2Fdotfiles.git diff --git a/archive.sh b/archive.sh index ede6c7e..1cfaf93 100755 --- a/archive.sh +++ b/archive.sh @@ -28,8 +28,17 @@ 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 + test -d $name || continue + echo "cloning $name to tmp/" git_clone $name tmp/dotfiles/$name done