mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
chore: only ban readlink -f (#1539)
This commit is contained in:
parent
2cf2f58c3e
commit
2dd65e0e71
@ -16,8 +16,6 @@ banned_commands=(
|
|||||||
eval
|
eval
|
||||||
# realpath not available by default on OSX.
|
# realpath not available by default on OSX.
|
||||||
realpath
|
realpath
|
||||||
# readlink on OSX behaves differently from readlink on other Unix systems
|
|
||||||
readlink
|
|
||||||
# source isn't POSIX compliant. . behaves the same and is POSIX compliant
|
# source isn't POSIX compliant. . behaves the same and is POSIX compliant
|
||||||
# Except in fish, where . is deprecated, and will be removed in the future.
|
# Except in fish, where . is deprecated, and will be removed in the future.
|
||||||
source
|
source
|
||||||
@ -32,6 +30,8 @@ banned_commands_regex=(
|
|||||||
"grep.* -P"
|
"grep.* -P"
|
||||||
# Ban grep long commands as they do not work on alpine
|
# Ban grep long commands as they do not work on alpine
|
||||||
"grep[^|]+--\w{2,}"
|
"grep[^|]+--\w{2,}"
|
||||||
|
# readlink -f on OSX behaves differently from readlink -f on other Unix systems
|
||||||
|
'readlink.+-.*f.+["$]'
|
||||||
# sort --sort-version isn't supported everywhere
|
# sort --sort-version isn't supported everywhere
|
||||||
"sort.*-V"
|
"sort.*-V"
|
||||||
"sort.*--sort-versions"
|
"sort.*--sort-versions"
|
||||||
|
Loading…
Reference in New Issue
Block a user