diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-12 18:33:50 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2023-10-14 18:58:26 -0600 |
commit | b15e310abe81a952624c3e96dd117699de7359e1 (patch) | |
tree | e37194b595c121518d293560ae734ff7a6bc1bfb /bin | |
parent | 0f34be118ae3b89a707eca452ede80cb05bbc589 (diff) |
Always pass -f (--fail) to curl
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cdxget | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,4 +6,4 @@ for arg in "$@"; do url+="$s${arg%%=*}=$(printf '%s' "${arg#*=}"|urlencode)" s='&' done -curl -sL "$url" +curl -sfL "$url" |