Change directories to lower case

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-05-27 13:57:21 +02:00
parent 4645e18f64
commit ee60d3cb64
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
9 changed files with 57 additions and 43 deletions

View file

@ -36,9 +36,15 @@ RUST_COMPONENTS=(
# Main code
#######################################
print_section "Setup notes directory"
if [ ! -d "${HOME}/Notes" ]
if [ ! -d "${HOME}/notes" ]
then
git clone gl:notes "${HOME}/Notes"
git clone gl:notes "${HOME}/notes"
fi
print_section "Setup tasks directory"
if [ ! -d "${HOME}/tasks" ]
then
git clone gl:tasks "${HOME}/tasks"
fi
print_section "Installing global npm packages"