From: Chris Koeritz Date: Thu, 23 Feb 2012 16:49:56 +0000 (-0500) Subject: whoops, had to wrap these. X-Git-Tag: 2.140.90~1562 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=475bec2b699411d95fae1f64f124a0fa2d3c45e2 whoops, had to wrap these. --- diff --git a/examples/custom_overrides/fred/build_cak0l.sh b/examples/custom_overrides/fred/build_cak0l.sh index e55690db..37b25388 100644 --- a/examples/custom_overrides/fred/build_cak0l.sh +++ b/examples/custom_overrides/fred/build_cak0l.sh @@ -1,5 +1,18 @@ #!/bin/bash -pushd ~/xsede/code/cak0l/trunk -ant -Dbuild.targetArch=64 build -popd + +function rebuild_cak0l() +{ + pushd ~/xsede/code/cak0l/trunk + ant clean + ant -Dbuild.targetArch=64 build + popd +} + +function build_cak0l() +{ + pushd ~/xsede/code/cak0l/trunk + ant -Dbuild.targetArch=64 build + popd +} + diff --git a/examples/custom_overrides/fred/rebuild_cak0l.sh b/examples/custom_overrides/fred/rebuild_cak0l.sh deleted file mode 100644 index 4b1510c2..00000000 --- a/examples/custom_overrides/fred/rebuild_cak0l.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -pushd ~/xsede/code/cak0l/trunk -ant clean -ant -Dbuild.targetArch=64 build -popd -