Add debugging output for build script.

ms-docker-update
Mooneer Salem 2022-11-22 20:25:41 -08:00
parent eb09b9738b
commit 867770b029
1 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,10 @@ if [ ! -d codec2 ]; then
git clone https://github.com/drowe67/codec2.git
fi
cd codec2 && git switch master && git pull && git checkout $CODEC2_BRANCH
mkdir -p $BUILD_DIR && cd $BUILD_DIR && rm -Rf * && $CMAKE -DLPCNET_BUILD_DIR=$LPCNETDIR/$BUILD_DIR .. && make VERBOSE=1
mkdir -p $BUILD_DIR && cd $BUILD_DIR && rm -Rf *
echo "$CMAKE -DLPCNET_BUILD_DIR=$LPCNETDIR/$BUILD_DIR .. && make VERBOSE=1"
ls $LPCNETDIR/$BUILD_DIR
$CMAKE -DLPCNET_BUILD_DIR=$LPCNETDIR/$BUILD_DIR .. && make VERBOSE=1
cd $FREEDVGUIDIR
if [ -d .git ]; then