Skip to content

Commit a5df275

Browse files
authored
fix(build): handle --no-aux without git-lfs (#1433)
Allows `--no-aux` to be used when `git-lfs` is not found.
1 parent fcfbe21 commit a5df275

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

build-coatjava.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ do
8080
--https) auxRetrieval=https ;;
8181
--wipe) auxRetrieval=wipe ;;
8282
--no-aux|--noaux)
83+
auxRetrieval=noaux
8384
auxDownloadMaps=false
8485
auxDownloadNets=false
8586
auxDownloadSqlites=false
@@ -206,6 +207,8 @@ case $auxRetrieval in
206207
;;
207208
https)
208209
;;
210+
noaux)
211+
;;
209212
*)
210213
echo "ERROR: data retrieval option \`--$auxRetrieval\` is not supported" >&2
211214
exit 1

0 commit comments

Comments
 (0)