20 lines
492 B
Bash
Executable File
20 lines
492 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
NO_COLOR="\x1b[0m"
|
|
OK_COLOR="\x1b[32;01m"
|
|
ERROR_COLOR="\x1b[31;01m"
|
|
WARN_COLOR="\x1b[33;01m"
|
|
|
|
|
|
# Compile the main Packer app
|
|
echo "${OK_COLOR}--> Compiling Packer${NO_COLOR}"
|
|
go build -v -o bin/packer .
|
|
|
|
# Go over each plugin and build it
|
|
for PLUGIN in $(find ./plugin -type d -mindepth 1 -maxdepth 1); do
|
|
PLUGIN_NAME=$(basename ${PLUGIN})
|
|
echo "${OK_COLOR}--> Compiling Plugin: ${PLUGIN_NAME}${NO_COLOR}"
|
|
go build -v -o bin/packer-${PLUGIN_NAME} ${PLUGIN}
|
|
done
|