11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -e
|
|
|
|
# This is a meta package - no binaries to download
|
|
|
|
# Process nfpm.yaml with envsubst
|
|
envsubst < /app/resources/nfpm.yaml > /app/nfpm.yaml
|
|
|
|
# Build the RPM
|
|
nfpm pkg --config /app/nfpm.yaml --target /app/dist --packager rpm
|