From 60ad4d1ee386b010dcba52da74adf5c1d25f99e9 Mon Sep 17 00:00:00 2001 From: Nathan Steel Date: Sat, 7 Aug 2021 19:53:30 +0100 Subject: [PATCH] Fix dotfiles not all getting copied to home - Added a -r flag to the copy, as some of the dotfiles are directories --- installs/wsl/wsl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installs/wsl/wsl.sh b/installs/wsl/wsl.sh index 9124347..b3c6061 100755 --- a/installs/wsl/wsl.sh +++ b/installs/wsl/wsl.sh @@ -93,5 +93,5 @@ ln -s $REPO/ascripts/backup/ $HOME/.local/bin/ # dotfiles # This will overwrite existing dotfiles... sudo -H -u nathan bash -c "git clone https://github.com/aney/dotfiles $REPO/adotfiles/" -cp $REPO/adotfiles/.[^.]* $HOME +cp -r $REPO/adotfiles/.[^.]* $HOME