Created
June 9, 2014 07:53
-
-
Save itiut/08b72007ced23c2c0958 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -eux | |
BIN_DIR=$KUGENUMA51_HOME/bin | |
SRC_DIR=$KUGENUMA51_HOME/src | |
REPOSITORY=tpch-mysql | |
REPO_DIR=$SRC_DIR/$REPOSITORY | |
if [ ! -d $REPO_DIR ]; then | |
cd $SRC_DIR | |
git clone https://github.com/itiut/$REPOSITORY.git | |
fi | |
cd $REPO_DIR | |
git reset --hard | |
git clean -fd | |
git pull | |
BIN_DIR=$BIN_DIR SRC_DIR=$SRC_DIR ./install-dbgen.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment