diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-19 18:41:24 +0100 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-19 18:41:24 +0100 | 
| commit | 5e9ed2237cb11ca57934e5e8da7f4b2ce174f4fb (patch) | |
| tree | daff73f208ff743ad13f521f4eaf66acd8399eeb | |
| parent | 7498cb2ddfc105ef9341809556fe2a79afd0547b (diff) | |
added: (stowcmds) -p to mkdir to silence it
| -rw-r--r-- | stowcmds.sh | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/stowcmds.sh b/stowcmds.sh index d23e66d..f7b3345 100644 --- a/stowcmds.sh +++ b/stowcmds.sh @@ -2,9 +2,9 @@  case "${MACH:=desktop}" in  	'desktop') -		mkdir "$HOME/bin" +		mkdir -p "$HOME/bin"  		stow -d bin/ -t "$HOME/bin" -R common dmscripts extra -		mkdir "$HOME/.config" +		mkdir -p "$HOME/.config"  		stow -d config/ -t "$HOME/.config" -R essentials common extra theme X  		stow -d config/ -t "$HOME/" -R zshrc  		;;  | 
