From 475bec2b699411d95fae1f64f124a0fa2d3c45e2 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 23 Feb 2012 11:49:56 -0500 Subject: [PATCH] whoops, had to wrap these. --- examples/custom_overrides/fred/build_cak0l.sh | 19 ++++++++++++++++--- .../custom_overrides/fred/rebuild_cak0l.sh | 6 ------ 2 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 examples/custom_overrides/fred/rebuild_cak0l.sh 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 - -- 2.34.1