mirror of
https://github.com/kaboomserver/server.git
synced 2025-07-04 05:01:23 +00:00
13 lines
221 B
Bash
13 lines
221 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
_download_type_url() {
|
||
|
read_args url skip_404
|
||
|
|
||
|
exitcode=0
|
||
|
download_with_args "$@" || exitcode=$?
|
||
|
|
||
|
if [ $exitcode = 100 ] && [ "${arg_skip_404:-false}" = "true" ]; then
|
||
|
return 0
|
||
|
fi
|
||
|
}
|