summary refs log tree commit diff
path: root/link.zsh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-03-28 13:25:19 -0400
committerJune McEnroe <programble@gmail.com>2018-03-28 13:38:23 -0400
commitac48fa5a5c361ccbff39d453e53015e51acc8568 (patch)
tree468fa7087e074428cfa402e0e8b9990579096ebe /link.zsh
parentUse [[ ]] in zsh scripts (diff)
downloadsrc-ac48fa5a5c361ccbff39d453e53015e51acc8568.tar.gz
src-ac48fa5a5c361ccbff39d453e53015e51acc8568.zip
Fix shell script lints
Diffstat (limited to '')
-rwxr-xr-xlink.zsh6
1 files changed, 3 insertions, 3 deletions
diff --git a/link.zsh b/link.zsh
index f5ed565c..8d573ceb 100755
--- a/link.zsh
+++ b/link.zsh
@@ -5,15 +5,15 @@ if [[ $# -eq 1 ]]; then
     linkPath="$1"
     filePath="$PWD/home/${linkPath#$HOME/}"
     [[ ! -f "$filePath" ]]
-    mkdir -p $(dirname "$filePath")
+    mkdir -p "$(dirname "$filePath")"
     mv "$linkPath" "$filePath"
 fi
 
-find home -type f | while read findPath; do
+find home -type f | while read -r findPath; do
     filePath="$PWD/$findPath"
     linkPath="$HOME/${findPath#home/}"
     [[ -L "$linkPath" ]] && continue
-    mkdir -p $(dirname "$linkPath")
+    mkdir -p "$(dirname "$linkPath")"
     ln -s "$filePath" "$linkPath"
     echo "$linkPath"
 done