codecrafters-http-server-go/your_server.sh
codecrafters-bot b1c6c383cd init [skip ci]
2024-05-24 20:03:55 +00:00

12 lines
210 B
Bash
Executable File

#!/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" "$@"