6 lines
86 B
Bash
Executable file
6 lines
86 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Building overte-api..."
|
|
go build -o overte-api .
|
|
echo "Done."
|