@@ -1,3 +1,20 @@
#!/bin/bash
bear -- ./compile $@
BUILD_TYPE="debug"
ARGS=""
while [[ $# > 0 ]];do
case $1 in
--release)
BUILD_TYPE="release"
shift
;;
*|-*|--*)
rest=("$@")
ARGS+=" ${rest[0]}"
esac
done
bear -- make BUILD_TYPE=$BUILD_TYPE $ARGS
The note is not visible to the blocked user.