summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/web/lang/_bin/transpile.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/lang/_bin/transpile.sh b/src/web/lang/_bin/transpile.sh
index e6e826c..36cd226 100755
--- a/src/web/lang/_bin/transpile.sh
+++ b/src/web/lang/_bin/transpile.sh
@@ -24,7 +24,7 @@ transpile() {
out="$2"
printf "" > "$out"
printf "<?php /* Copyright (c) 2024 Freya Murphy */\n\n" > "$out";
- grep "\$lang" < "$file" | xargs -d'\n' -I{} bash -c 'handle_line "$@"' _ {} >> "$out"
+ grep "\$lang" < "$file" | xargs -n1 -I{} bash -c 'handle_line "$@"' _ {} >> "$out"
}
transpile "$1" "$2"