Ver a proveniência

seq(1) is not available on OpenBSD.

pull/1166/head
Tomoyuki Sahara há 8 anos
ascendente
cometimento
9c1d677d23
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      libexec/pyenv-rehash

+ 1
- 1
libexec/pyenv-rehash Ver ficheiro

@ -40,7 +40,7 @@ if [ ! -w "$SHIM_PATH" ]; then
fi
unset acquired
for _ in $(seq "${PYENV_REHASH_TIMEOUT:-60}"); do
for (( i=1; i<="${PYENV_REHASH_TIMEOUT:-60}"; i++ )); do
if acquire_lock 2>/dev/null; then
acquired=1
break

Carregando…
Cancelar
Guardar