add version + install
This commit is contained in:
parent
a37468e027
commit
ab999408d1
33
dist/bes-build
vendored
33
dist/bes-build
vendored
|
@ -10,7 +10,7 @@ bes.build(){
|
|||
fi
|
||||
if [ -f "$APP_BIN" ]; then
|
||||
if [ "$1" = "-s" ]; then
|
||||
bes.echo.action "backup last build ${Coff}dist/$(date +%y%m%d)-$APP_NAME${Coff}"
|
||||
bes.echo.action "backup last build to ${Coff}dist/$(date +%y%m%d)-$APP_NAME${Coff}"
|
||||
mv $APP_BIN $APP_DIR/dist/$(date +%y%m%d)-$APP_NAME
|
||||
else
|
||||
bes.echo.action "removing ${Coff}dist/$APP_NAME${Coff}"
|
||||
|
@ -145,20 +145,47 @@ bes.color.map(){
|
|||
done
|
||||
}
|
||||
|
||||
BES_BUILD_VERSION=0.2
|
||||
bes.install(){
|
||||
local path=${1:-/usr/local/bin}
|
||||
|
||||
bes.echo.title "Installing bes-build ${Coff}in" "$path"
|
||||
|
||||
if [ -f "./bes-build" ]; then
|
||||
rm ./bes-build
|
||||
fi
|
||||
wget -q https://git.pluie.org/meta-tech/bes-build/raw/master/dist/bes-build
|
||||
if [ $? -eq 0 ]; then
|
||||
chmod +x ./bes-build
|
||||
if [ -d $path ]; then
|
||||
bes.echo.action "install bes-build in ${Copt}$path/bes-build"
|
||||
sudo mv ./bes-build $path/bes-build
|
||||
bes.echo.state $?
|
||||
else
|
||||
bes.echo.error "install directory do not exists : ${Cspe}$path"
|
||||
fi
|
||||
else
|
||||
bes.echo.error "can not download latest version of bes-build"
|
||||
fi
|
||||
}
|
||||
|
||||
BES_BUILD_VERSION=0.3
|
||||
APP_DIR=$(pwd)
|
||||
APP_NAME=$(basename $(pwd))
|
||||
APP_BIN=$APP_DIR/dist/$APP_NAME
|
||||
|
||||
bes.main(){
|
||||
if [ "$1" = "version" ]; then
|
||||
echo $BES_BUILD_VERSION
|
||||
else
|
||||
bes.title 'bes-build' $BES_BUILD_VERSION
|
||||
echo
|
||||
if [ "$1" = "install" ]; then
|
||||
bes.install
|
||||
bes.install $2
|
||||
elif [ -z "$1" ] || [ "$1" = "-s" ]; then
|
||||
bes.build "$1"
|
||||
fi
|
||||
echo
|
||||
fi
|
||||
}
|
||||
|
||||
bes.main $*
|
||||
|
|
24
src/install.sh
Normal file
24
src/install.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
bes.install(){
|
||||
local path=${1:-/usr/local/bin}
|
||||
|
||||
bes.echo.title "Installing bes-build ${Coff}in" "$path"
|
||||
|
||||
if [ -f "./bes-build" ]; then
|
||||
rm ./bes-build
|
||||
fi
|
||||
wget -q https://git.pluie.org/meta-tech/bes-build/raw/master/dist/bes-build
|
||||
if [ $? -eq 0 ]; then
|
||||
chmod +x ./bes-build
|
||||
if [ -d $path ]; then
|
||||
bes.echo.action "install bes-build in ${Copt}$path/bes-build"
|
||||
sudo mv ./bes-build $path/bes-build
|
||||
bes.echo.state $?
|
||||
else
|
||||
bes.echo.error "install directory do not exists : ${Cspe}$path"
|
||||
fi
|
||||
else
|
||||
bes.echo.error "can not download latest version of bes-build"
|
||||
fi
|
||||
}
|
|
@ -1,19 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
BES_BUILD_VERSION=0.2
|
||||
BES_BUILD_VERSION=0.3
|
||||
APP_DIR=$(pwd)
|
||||
APP_NAME=$(basename $(pwd))
|
||||
APP_BIN=$APP_DIR/dist/$APP_NAME
|
||||
|
||||
bes.main(){
|
||||
if [ "$1" = "version" ]; then
|
||||
echo $BES_BUILD_VERSION
|
||||
else
|
||||
bes.title 'bes-build' $BES_BUILD_VERSION
|
||||
echo
|
||||
if [ "$1" = "install" ]; then
|
||||
bes.install
|
||||
bes.install $2
|
||||
elif [ -z "$1" ] || [ "$1" = "-s" ]; then
|
||||
bes.build "$1"
|
||||
fi
|
||||
echo
|
||||
fi
|
||||
}
|
||||
|
||||
bes.main $*
|
||||
|
|
Loading…
Reference in New Issue
Block a user