install.sh 502 Bytes
Newer Older
#!/bin/bash

#set -e
set -vx

BASE_PATH=`pwd`

git submodule update --init --recursive --remote

Yann Garcia's avatar
Yann Garcia committed
if [ ! -d ./titan-test-system-framework ]
Yann Garcia's avatar
Yann Garcia committed
    git clone --recurse-submodules --branch devel https://labs.etsi.org/rep/cti-tools/titan-test-system-framework.git
    cd ./titan-test-system-framework
else
    cd ./titan-test-system-framework
    git checkout devel
fi
cd ./ttcn/LibHttp
ln -f module_mec.mk module.mk

cd $BASE_PATH
ln -f ./ttcn/patch_lib_common_titan/module.mk ./ttcn/LibCommon/

exit 0