diff options
author | 2025-02-24 04:46:37 +0100 | |
---|---|---|
committer | 2025-02-24 04:46:37 +0100 | |
commit | 9e1817db27ead99133602802b1137aa18d141a93 (patch) | |
tree | 5cdd3a8c9e906fe80786d8f54f4b7d342668fb32 /contrib | |
parent | 024bfaeab39facaf3b6fcdd8f5ab61d669bd4a45 (diff) | |
download | httptool-9e1817db27ead99133602802b1137aa18d141a93.tar.gz httptool-9e1817db27ead99133602802b1137aa18d141a93.tar.bz2 httptool-9e1817db27ead99133602802b1137aa18d141a93.tar.lz httptool-9e1817db27ead99133602802b1137aa18d141a93.zip |
feat: just set -e
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/strip-srcmap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/strip-srcmap.sh b/contrib/strip-srcmap.sh index a87ab03..e92804f 100755 --- a/contrib/strip-srcmap.sh +++ b/contrib/strip-srcmap.sh @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -set -eax +set -e # some source maps are >20MB, we can't keep that going. for f in $(find build/uwu -name '*.js' -or -name '*.mjs'); do grep -v sourceMappingURL= "$f" > /tmp/a && mv /tmp/a "$f" |