mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-24 14:06:27 +02:00
6 lines
191 B
Bash
Executable file
6 lines
191 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
shift
|
|
cd project
|
|
# Awk is used to remove lines from the output that don't help for the piston output.
|
|
gleam run $(cat ../compile_args 2> /dev/null) -- "$@" | awk "NR>=4"
|