Browse Source

Remove unmatched quote written in the fish config file (#83)

There's an unmatched double quote written in the fish config file by the installer that breaks sourcing that said config file.
remotes/origin/add-simple-redirecting-site
Thomas Alcala Schneider 6 years ago committed by Gal Schlezinger
parent
commit
8ed082ed11
  1. 2
      .ci/install.sh

2
.ci/install.sh

@ -115,7 +115,7 @@ setup_shell() { @@ -115,7 +115,7 @@ setup_shell() {
echo '' >> $CONF_FILE
echo '# fnm' >> $CONF_FILE
echo 'set PATH $HOME/.fnm $PATH' >> $CONF_FILE
echo 'fnm env --multi | source"' >> $CONF_FILE
echo 'fnm env --multi | source' >> $CONF_FILE
elif [ "$CURRENT_SHELL" == "bash" ]; then
if [ "$OS" == "Darwin" ]; then

Loading…
Cancel
Save