Files
hatchet/hack/dev/run-go-with-env.sh

10 lines
66 B
Bash

#!/bin/bash
set -eux
set -a
. .env || true
set +a
exec go "$@"