first check-in of feisty meow codebase. many things broken still due to recent
[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=$REPOSITORY_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 $REPOSITORY_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