소스 검색

Use `command` and `type` instead of `which` (#2144)

`which` has been deprecated in Debian's debianutils 5.0+
They suggest using `type` and `command` as replacements:
3a8dd10b45 ,
610a65c6ef
pull/2157/head
Ville Skyttä 2 년 전
committed by GitHub
부모
커밋
a9e11ba164
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +2
    -2
      plugins/python-build/test/pyenv.bats
  2. +2
    -2
      test/test_helper.bash

+ 2
- 2
plugins/python-build/test/pyenv.bats 파일 보기

@ -183,7 +183,7 @@ OUT
}
@test "pyenv-install has usage help preface" {
run head "$(which pyenv-install)"
run head "$(command -v pyenv-install)"
assert_output_contains 'Usage: pyenv install'
}
@ -212,6 +212,6 @@ OUT
}
@test "pyenv-uninstall has usage help preface" {
run head "$(which pyenv-uninstall)"
run head "$(command -v pyenv-uninstall)"
assert_output_contains 'Usage: pyenv uninstall'
}

+ 2
- 2
test/test_helper.bash 파일 보기

@ -116,12 +116,12 @@ path_without() {
local path=":${PATH}:"
for exe; do
local found alt util
for found in $(PATH="$path" which -a "$exe"); do
for found in $(PATH="$path" type -aP "$exe"); do
found="${found%/*}"
if [ "$found" != "${PYENV_ROOT}/shims" ]; then
alt="${PYENV_TEST_DIR}/$(echo "${found#/}" | tr '/' '-')"
mkdir -p "$alt"
for util in bash head cut readlink greadlink which; do
for util in bash head cut readlink greadlink; do
if [ -x "${found}/$util" ]; then
ln -s "${found}/$util" "${alt}/$util"
fi

불러오는 중...
취소
저장