mirror of
https://gitee.com/arthas/arthas.git
synced 2024-11-30 03:07:37 +08:00
35 lines
648 B
Bash
35 lines
648 B
Bash
#!/bin/bash
|
|
|
|
# define newest arthas's version
|
|
ARTHAS_VERSION=${project.version}
|
|
|
|
# define newest arthas's lib home
|
|
ARTHAS_LIB_HOME=${HOME}/.arthas/lib/${ARTHAS_VERSION}/arthas
|
|
|
|
# exit shell with err_code
|
|
# $1 : err_code
|
|
# $2 : err_msg
|
|
exit_on_err()
|
|
{
|
|
[[ ! -z "${2}" ]] && echo "${2}" 1>&2
|
|
exit ${1}
|
|
}
|
|
|
|
# install to local if necessary
|
|
if [[ ! -x ${ARTHAS_LIB_HOME} ]]; then
|
|
|
|
# install to local
|
|
mkdir -p ${ARTHAS_LIB_HOME} \
|
|
|| exit_on_err 1 "create target directory ${ARTHAS_LIB_HOME} failed."
|
|
|
|
# copy jar files
|
|
cp *.jar ${ARTHAS_LIB_HOME}/
|
|
|
|
# make it -x
|
|
chmod +x ./as.sh
|
|
|
|
fi
|
|
|
|
echo "install to local succeeded."
|
|
|