mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-01 02:33:54 +03:00
7 lines
249 B
Plaintext
7 lines
249 B
Plaintext
|
for file in "$@"
|
||
|
do
|
||
|
# concatenate all input files, removing any reference to importing widgetry
|
||
|
# assuming it's one of the input files being concatenated
|
||
|
cat $file | grep -v "from '../widgetry.js'" | grep -v 'from "../widgetry.js"'
|
||
|
done
|