Procházet zdrojové kódy

Exit with 0 status when a version file is read successfully

pull/360/head^2
Sam Stephenson před 15 roky
rodič
revize
e5c0fd22e1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      libexec/rbenv-version-file-read

+ 1
- 1
libexec/rbenv-version-file-read Zobrazit soubor

@ -10,7 +10,7 @@ if [ -e "$VERSION_FILE" ]; then
version="${words[0]}"
if [ -n "$version" ]; then
echo "$version"
break
exit
fi
done < <( cat "$VERSION_FILE" && echo )
fi

Načítá se…
Zrušit
Uložit