diff --git a/install.sh b/install.sh index 04e0cf7..dcc70c0 100755 --- a/install.sh +++ b/install.sh @@ -7,7 +7,7 @@ _fetch_sources(){ mkdir ~/.nano/ fi - cd ~/.nano/ + cd ~/.nano/ || exit unzip -o "/tmp/nanorc.zip" mv nanorc-master/* ./ @@ -22,9 +22,9 @@ _update_nanorc(){ fi # add all includes from ~/.nano/nanorc if they're not already there - while read inc; do + while read -r inc; do if ! grep -q "$inc" "${NANORC_FILE}"; then - echo "$inc" >> $NANORC_FILE + echo "$inc" >> "$NANORC_FILE" fi done < ~/.nano/nanorc }