You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
Bash
16 lines
363 B
Bash
#!/bin/bash
|
|
|
|
default_os=${default_os:-ubuntu}
|
|
default_os_codename=${default_os_codename:-bionic}
|
|
|
|
os=${1:-$default_os}
|
|
os_codename=${2:-$default_os_codename}
|
|
build_tag="$3"
|
|
if [[ -n "$build_tag" ]]; then
|
|
build_tag_for_images="_${build_tag#+}"
|
|
build_debian_revision="$(echo $build_tag | tr _ -)"
|
|
fi
|
|
os_image="$os:$os_codename"
|
|
|
|
echo "Building for $os_image"
|