mirror of
https://github.com/rancher/os.git
synced 2025-06-22 13:07:04 +00:00
Always compress with gzip unless we are doing a release. Also download rootfs.tar to ${DOWNLOAD} so `dapper -m bind` works better.
9 lines
122 B
Bash
Executable File
9 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
export REPO_VERSION=$VERSION
|
|
export COMPRESS=lzma
|
|
|
|
exec $(dirname $0)/ci
|