pulumi/examples/analyzers/infosec/build.sh
Luke Hoban 771a30c688 Save build artifacts aftifacts for Go builds
In the places we run `go build`, we should use
`go build -i` to save the `.a` files generated
during the build.  This ensures the artifacts
are availble for other Go tools (linters, IDEs), and
should also improve build speeds.
2017-06-07 17:03:07 -07:00

10 lines
190 B
Bash
Executable file

#!/bin/bash
# A simple installation script for a basic infosec scanner.
set -e # bail on errors
echo Compiling:
go build -i -o lumi-analyzer-contoso_infosec
echo Done.