From: Chris Koeritz Date: Fri, 9 Mar 2012 15:54:53 +0000 (-0500) Subject: simplifying X-Git-Tag: 2.140.90~1495 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=de97aa518dcc0fe712217532482eaa0fdf50bdb9 simplifying --- diff --git a/examples/custom_overrides/fred/build_cak0l.sh b/examples/custom_overrides/fred/build_cak0l.sh index 37b25388..1dc3f197 100644 --- a/examples/custom_overrides/fred/build_cak0l.sh +++ b/examples/custom_overrides/fred/build_cak0l.sh @@ -1,18 +1,17 @@ #!/bin/bash -function rebuild_cak0l() +function build_cak0l() { pushd ~/xsede/code/cak0l/trunk - ant clean ant -Dbuild.targetArch=64 build popd } -function build_cak0l() +function rebuild_cak0l() { pushd ~/xsede/code/cak0l/trunk - ant -Dbuild.targetArch=64 build + ant clean popd + build_cak0l } -