summary refs log tree commit diff
path: root/link.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'link.zsh')
-rwxr-xr-xlink.zsh20
1 files changed, 10 insertions, 10 deletions
diff --git a/link.zsh b/link.zsh
index e9fa64ca..a0a9e7aa 100755
--- a/link.zsh
+++ b/link.zsh
@@ -2,17 +2,17 @@
 set -o errexit -o nounset -o pipefail
 
 if [[ $# -eq 1 ]]; then
-    linkPath="$1"
-    filePath="$PWD/home/${linkPath#$HOME/}"
-    [[ ! -f "$filePath" ]]
-    mkdir -p "$(dirname "$filePath")"
-    mv "$linkPath" "$filePath"
+	linkPath="$1"
+	filePath="$PWD/home/${linkPath#$HOME/}"
+	[[ ! -f "$filePath" ]]
+	mkdir -p "$(dirname "$filePath")"
+	mv "$linkPath" "$filePath"
 fi
 
 find home -type f | while read -r findPath; do
-    filePath="$PWD/$findPath"
-    linkPath="$HOME/${findPath#home/}"
-    mkdir -p "$(dirname "$linkPath")"
-    [[ ( -f "$linkPath" && -L "$linkPath" ) || ! -f "$linkPath" ]]
-    ln -s -f "$filePath" "$linkPath"
+	filePath="$PWD/$findPath"
+	linkPath="$HOME/${findPath#home/}"
+	mkdir -p "$(dirname "$linkPath")"
+	[[ ( -f "$linkPath" && -L "$linkPath" ) || ! -f "$linkPath" ]]
+	ln -s -f "$filePath" "$linkPath"
 done