Fix leftover trash
This commit is contained in:
parent
757cf2432f
commit
57f4acf73f
|
@ -3,7 +3,6 @@ set -e
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
PWD="$(pwd)"
|
PWD="$(pwd)"
|
||||||
|
|
||||||
#dir to
|
|
||||||
clone_dir() {
|
clone_dir() {
|
||||||
local dir=${1:-home}
|
local dir=${1:-home}
|
||||||
local to=${2:-$HOME}
|
local to=${2:-$HOME}
|
||||||
|
@ -13,7 +12,7 @@ clone_dir() {
|
||||||
if [ -d "$f" ]; then
|
if [ -d "$f" ]; then
|
||||||
clone_dir "$f" "$to"
|
clone_dir "$f" "$to"
|
||||||
elif [ -f "$f" ]; then
|
elif [ -f "$f" ]; then
|
||||||
ln -sf '$PWD/$f' -> '$to/.${f#home/}'
|
ln -sf '$PWD/$f' '$to/.${f#home/}'
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue