Skip to content

Commit

Permalink
Fix path.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcusfelis committed Dec 30, 2011
1 parent 13e2a77 commit b87995e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions cron.sh
Expand Up @@ -2,14 +2,19 @@

VERSION="8.2p"
DIR="/home/builder/isomorphic"

# Get script path
cd "$(dirname $0)"
INC_DIR="$(pwd)"

cd "$DIR"

rm -rf ./*

ZIP="$(mktemp)"
COMMENT="Push $(VERSION) at $(date -u)."
./download.sh "${VERSION}" "${ZIP}"
./build.sh "${DIR}" "${ZIP}"
$INC_DIR/download.sh "${VERSION}" "${ZIP}"
$INC_DIR/build.sh "${DIR}" "${ZIP}"

git add -u
git commit -m "$COMMENT"
Expand Down

0 comments on commit b87995e

Please sign in to comment.