88c9830c011350aaba9a222c1238856fa92aa0fb
[feisty_meow.git] / production / setup_src / autotesting_tools / create_autotesting_bundle.sh
1 #!/bin/bash
2
3 # Creates a bundle of tools for testing to improve our capabilities in
4 # scripting.
5
6 INSTDIR=$FEISTY_MEOW_DIR/install/Tests
7 if [ ! -d "$INSTDIR" ]; then mkdir -p "$INSTDIR"; fi
8 TOOL_PACK=$INSTDIR/autotesting_tools.exe
9 rm -f "$TOOL_PACK"
10
11 $FEISTY_MEOW_DIR/binaries/bundle_creator -o "$TOOL_PACK" -m ./autotesting_manifest.txt
12 if [ "$?" != "0" ]; then
13   echo Failure during creation of autotest package.
14   exit 23
15 fi
16