We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26ff6b commit f86d926Copy full SHA for f86d926
src/hooks.server.ts
@@ -50,7 +50,9 @@ fi
50
51
cd "\$DOTFILES_DIR"
52
echo "Deploying dotfiles with stow..."
53
-stow -v --target="\$HOME" */ 2>/dev/null || stow -v --target="\$HOME" git ssh zsh 2>/dev/null || true
+for dir in */; do
54
+ [ -d "\$dir" ] && stow -v --target="\$HOME" "\${dir%/}" 2>/dev/null || true
55
+done
56
`
57
: ''
58
}
0 commit comments