summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/build/debug/200-duma.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/build/debug/200-duma.sh b/scripts/build/debug/200-duma.sh
index 29bdec6..225d00c 100644
--- a/scripts/build/debug/200-duma.sh
+++ b/scripts/build/debug/200-duma.sh
@@ -1,8 +1,11 @@
# Build script for D.U.M.A.
do_debug_duma_get() {
- CT_GetFile "duma_${CT_DUMA_VERSION}" http://mesh.dl.sourceforge.net/sourceforge/duma/
- # Downloading from sourceforge leaves garbage, cleanup
+ # Downloading an non-existing file from sourceforge will give you an
+ # HTML file containing an error message, instead of returning a 404.
+ # Sigh...
+ CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz http://mesh.dl.sourceforge.net/sourceforge/duma/
+ # Downloading from sourceforge may leave garbage, cleanup
CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"*
}