10 lines
132 B
Bash
Executable file
10 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
set -o nounset
|
|
|
|
export NAME="$1"
|
|
mkdir -p images
|
|
export IMAGES="$(realpath images)"
|
|
|
|
cd packer
|
|
|
|
packer build "$NAME.json"
|