mirror of
https://github.com/cupcakearmy/codecrafters-http-server-go.git
synced 2024-11-09 18:34:18 +01:00
12 lines
210 B
Bash
12 lines
210 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# DON'T EDIT THIS!
|
||
|
#
|
||
|
# CodeCrafters uses this file to test your code. Don't make any changes here!
|
||
|
#
|
||
|
# DON'T EDIT THIS!
|
||
|
set -e
|
||
|
tmpFile=$(mktemp)
|
||
|
go build -o "$tmpFile" app/*.go
|
||
|
exec "$tmpFile" "$@"
|