Skip to content

Commit 80269df

Browse files
committed
Virtualized MacOS doesn't like me writing to /dev/stdout
1 parent 9acc23f commit 80269df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokenize

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function main() {
7272
elif [[ "$cflag" ]]; then
7373
echo "Decommenting, crunching, and tokenizing '$f' into '$g'"
7474
jumps=$(m100-sanity "$f" | m100-jumps )
75-
m100-sanity "$f" | m100-decomment /dev/stdin /dev/stdout ${jumps} | m100-crunch | m100-tokenize > $g
75+
m100-sanity "$f" | m100-decomment - - ${jumps} | m100-crunch | m100-tokenize > $g
7676
else
7777
echo "Tokenizing '$f' into '$g'"
7878
m100-sanity "$f" | m100-tokenize > "$g"

0 commit comments

Comments
 (0)