summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2021-09-02 21:55:21 +0200
committerAndreas Schneider <asn@cryptomilk.org>2021-09-02 21:55:21 +0200
commit4b064e1e81716e437dd49e1865cecf5dbd5b5e70 (patch)
treed70d34576e64b4ef91b141ada9609fd9119bc8b8
parentaf747afa8e716e13f79fe325e4e1819aaedb371f (diff)
downloaddotfiles-4b064e1e81716e437dd49e1865cecf5dbd5b5e70.tar.gz
dotfiles-4b064e1e81716e437dd49e1865cecf5dbd5b5e70.tar.xz
dotfiles-4b064e1e81716e437dd49e1865cecf5dbd5b5e70.zip
Fix install.sh
-rw-r--r--install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 5b2167e..dbb0fae 100644
--- a/install.sh
+++ b/install.sh
@@ -7,5 +7,5 @@ for d in $(find . -maxdepth 1 -type d | sort); do
if [[ "${d}" == "." ]] || [[ "${d}" == "./.git" ]]; then
continue
fi
- stow -R ${d}
+ stow -R $(basename "${d}")
done