mirror of
https://github.com/bitnami/minideb.git
synced 2026-06-04 10:13:55 +08:00
12 lines
179 B
Bash
Executable File
12 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
dist=${1:?dist arg is required}
|
|
snapshot_id=${2:-$(./snapshot_id)}
|
|
platform=${3:-amd64}
|
|
|
|
./buildone "$dist" "$platform" "$snapshot_id"
|