11 lines
105 B
Plaintext
11 lines
105 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# execute go command inside a container
|
||
|
#
|
||
|
|
||
|
set -o pipefail
|
||
|
|
||
|
source $HOME/.dockerfunc
|
||
|
|
||
|
go $@
|