mirror of
https://github.com/reactos/buildbot_config.git
synced 2024-11-26 21:20:27 +00:00
730b11c26d
The directory name has been changed to reflect that.
21 lines
696 B
Bash
Executable File
21 lines
696 B
Bash
Executable File
#!/bin/bash
|
|
# ReactOS BuildBot Build Scripts
|
|
# Update the ahk tests checkout, copy the apps and the compiled tests
|
|
# Parameter $1 (optional) - SVN Revision number of the AHK tests
|
|
source ../../config.inc
|
|
|
|
AHKTESTS_URL=https://svn.reactos.org/project-tools/trunk/ahk_tests
|
|
AHK_DIR=$PWD/modules/AHK_Tests
|
|
AHK_REV=HEAD
|
|
|
|
if [ $# -eq 1 ] ; then AHK_REV=$1 ; fi
|
|
if [ -d $AHK_DIR ] ; then
|
|
svn --non-interactive --no-auth-cache --revision $AHK_REV update $AHK_DIR
|
|
else
|
|
svn --non-interactive --no-auth-cache --revision $AHK_REV checkout $AHKTESTS_URL $AHK_DIR
|
|
fi
|
|
rm -fv $AHK_DIR/Apps
|
|
rm -fv $AHK_DIR/Compiler
|
|
ln -s $PWD/../Apps $AHK_DIR/Apps ||exit $?
|
|
ln -s $PWD/../Compiler $AHK_DIR/Compiler ||exit $?
|