mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-04 22:07:52 +00:00
if you need to differentiate it you can add $CTYPE variable as suffix of bin/build path conf
8 lines
148 B
Bash
8 lines
148 B
Bash
# you can choose build type from cmd argument
|
|
if [ ! -z $1 ]
|
|
then
|
|
CCTYPE=$1
|
|
CCTYPE=${CCTYPE^} # capitalize first letter if it's not yet
|
|
fi
|
|
|