8 lines
79 B
Bash
8 lines
79 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
apt install -y golang
|
|
go run main.go
|
|
|
|
echo "Done running!"
|