mirror of
https://github.com/bol-van/zapret.git
synced 2025-12-06 03:26:47 +03:00
Compare commits
2 Commits
7be9790839
...
cb653bedd6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cb653bedd6 | ||
|
|
534c88c96a |
@@ -482,7 +482,7 @@ check_prerequisites()
|
||||
exitp 6
|
||||
}
|
||||
|
||||
local prog progs='curl'
|
||||
local prog progs="$CURL"
|
||||
[ "$SKIP_PKTWS" = 1 ] || {
|
||||
case "$UNAME" in
|
||||
Linux)
|
||||
|
||||
@@ -4,6 +4,10 @@ which()
|
||||
# 'command -v' replacement does not work exactly the same way. it outputs shell aliases if present
|
||||
# $1 - executable name
|
||||
local IFS=:
|
||||
[ "$1" != "${1#/}" ] && [ -x "$1" ] && {
|
||||
echo "$1"
|
||||
return 0
|
||||
}
|
||||
for p in $PATH; do
|
||||
[ -x "$p/$1" ] && {
|
||||
echo "$p/$1"
|
||||
|
||||
Reference in New Issue
Block a user