You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
#!/bin/zsh
|
|
|
|
baseDir=${0:a:h}
|
|
export baseDir
|
|
be_caller_dir=${PWD}
|
|
export be_caller_dir
|
|
set -e
|
|
|
|
# Parse command line arguments
|
|
if [[ $# -lt 2 ]]; then
|
|
echo "Usage: $0 <operation> [<file> <dir>]"
|
|
exit 1
|
|
fi
|
|
|
|
operation=$1
|
|
echo arg num: $#
|
|
echo "args: $0 $1 $2"
|
|
echo "baseDir: $baseDir"
|
|
echo "callerDir: $be_caller_dir"
|
|
|
|
source_code_dir=/home/yu/work/boot
|
|
# Determine which operation to perform
|
|
set -x
|
|
case $operation in
|
|
"unpack")
|
|
if [[ $# -eq 2 ]]; then
|
|
file=`realpath $2`
|
|
dir=`realpath out`
|
|
cd ${source_code_dir}
|
|
pwd
|
|
gradle unpack --args="unpackInternal $file $dir"
|
|
elif [[ $# -eq 3 ]]; then
|
|
file=`realpath $2`
|
|
dir=`realpath $3`
|
|
cd ${source_code_dir}
|
|
gradle unpack --args="unpackInternal $file $dir"
|
|
else
|
|
echo "Invalid args"
|
|
cd ${baseDir}/../../../
|
|
gradle unpack
|
|
fi
|
|
;;
|
|
"pack")
|
|
pwd
|
|
if [[ $# -eq 2 ]]; then
|
|
dir=`realpath $2`
|
|
cd ${source_code_dir}
|
|
file=${be_caller_dir}/$(grep -m1 '^role=' $dir/workspace.ini | cut -d'=' -f2-)
|
|
gradle pack --args="packInternal $dir $file"
|
|
elif [[ $# -eq 3 ]]; then
|
|
dir=`realpath $2`
|
|
file=`realpath $3`
|
|
cd ${source_code_dir}
|
|
gradle pack --args="packInternal $dir $file"
|
|
else
|
|
##cd ${baseDir}/../../../
|
|
#cd ${source_code_dir}
|
|
#gradle pack
|
|
echo "Invalid args"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Invalid operation: $operation. Please choose 'unpack' or 'pack'."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|