From c5a1d9613f6975633f639336be04ec355708d534 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Tue, 15 Sep 2026 13:27:55 -0400 Subject: [PATCH] fix(build): handle `--no-aux` without `git-lfs` Allows `--no-aux` to be used when `git-lfs` is not found. --- build-coatjava.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-coatjava.sh b/build-coatjava.sh index 1586b1fa05..8b301be2be 100755 --- a/build-coatjava.sh +++ b/build-coatjava.sh @@ -80,6 +80,7 @@ do --https) auxRetrieval=https ;; --wipe) auxRetrieval=wipe ;; --no-aux|--noaux) + auxRetrieval=noaux auxDownloadMaps=false auxDownloadNets=false auxDownloadSqlites=false @@ -206,6 +207,8 @@ case $auxRetrieval in ;; https) ;; + noaux) + ;; *) echo "ERROR: data retrieval option \`--$auxRetrieval\` is not supported" >&2 exit 1