upgrade dependency echo to 1.2
This commit is contained in:
parent
3af48a0e72
commit
7293112c47
2
bes.ini
2
bes.ini
|
@ -10,4 +10,4 @@ description = "simple bash bes installer"
|
||||||
keywords = "bash, bes, install"
|
keywords = "bash, bes, install"
|
||||||
|
|
||||||
[require]
|
[require]
|
||||||
bes.echo = master
|
bes.echo = 1.2
|
||||||
|
|
|
@ -13,9 +13,9 @@ function bes.install ()
|
||||||
local url=${2}
|
local url=${2}
|
||||||
local path=${3:-/usr/local/bin}
|
local path=${3:-/usr/local/bin}
|
||||||
local done=1
|
local done=1
|
||||||
bes.echo.title "Installing $app ${Coff}in" "$path"
|
echo.title "Installing $app ${Coff}in" "$path"
|
||||||
if [ -z "$app" ] || [ -s "$url" ]; then
|
if [ -z "$app" ] || [ -s "$url" ]; then
|
||||||
bes.echo.error "in bes.install : \$app '$app' & \$url '$url' are required" 1
|
echo.error "in bes.install : \$app '$app' & \$url '$url' are required" 1
|
||||||
fi
|
fi
|
||||||
if [ -f "./$app" ]; then
|
if [ -f "./$app" ]; then
|
||||||
rm ./$app
|
rm ./$app
|
||||||
|
@ -26,12 +26,12 @@ function bes.install ()
|
||||||
if [ -d $path ]; then
|
if [ -d $path ]; then
|
||||||
sudo mv ./$app $path/$app
|
sudo mv ./$app $path/$app
|
||||||
local done=$?
|
local done=$?
|
||||||
bes.echo.state $done
|
echo.state $done
|
||||||
else
|
else
|
||||||
bes.echo.error "install directory do not exists : ${Cspe}$path"
|
echo.error "install directory do not exists : ${Cspe}$path"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
bes.echo.error "can not download latest version of app $app. please check url : $url"
|
echo.error "can not download latest version of app $app. please check url : $url"
|
||||||
fi
|
fi
|
||||||
bes.echo.rs $done
|
echo.rs $done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user