From b6b51b27e20134cbf58ee64031d32fa66d86a449 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 10 Mar 2013 22:57:55 +0100 Subject: [PATCH] archive.sh: Cleanup. --- archive.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/archive.sh b/archive.sh index 9994836..ede6c7e 100755 --- a/archive.sh +++ b/archive.sh @@ -24,21 +24,20 @@ set -e git_clone() { - git clone "$1" "$2" > /dev/null - cwd=`pwd` - cd "$2" && git remote rm origin && git gc && cd "$cwd" + git clone "$1" "$2" >/dev/null + ( cd "$2" && git remote rm origin && git gc ) } git_clone . tmp/dotfiles for name in browser shell vcs vim x11; do - echo cloning $name to tmp/ + echo "cloning $name to tmp/" git_clone $name tmp/dotfiles/$name done archive=dotfiles.tar.gz -echo creating $archive +echo "creating $archive" tar cf tmp/$archive -C tmp -z dotfiles -echo moving $archive to . +echo "moving $archive to ." mv tmp/$archive . rm -rf tmp -- 2.43.2