From 415185c29f5982f987c9143d852aabf9b2523513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sun, 6 Mar 2016 17:20:22 +0100 Subject: [PATCH] Remove unnecessary lines. --- scripts/setup.bash | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/setup.bash b/scripts/setup.bash index 7cab4cb..63d1689 100755 --- a/scripts/setup.bash +++ b/scripts/setup.bash @@ -15,8 +15,6 @@ backup_dir="$HOME/.dotfiles.bak/" # these folders inside $config_dir will be ignored ignore_folders=('scripts' 'skel') -MAPPING_SEPARATOR='::' - dryrun=0 while [[ $# -gt 0 ]] ; do @@ -92,7 +90,4 @@ while IFS= read -d $'\0' -r folder ; do done done < <(find "$config_dir"/* -maxdepth 0 -mindepth 0 -type d -print0) -# copy everything from the skel directory into $HOME, but do not overwrite anything -# the /. at the end of source is some cp magic that copies the content of a directory -# instead of the directory inself (( $dryrun )) || rsync --archive --verbose --ignore-existing "$skel_dir/" "$HOME"