mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47: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.
10 lines
156 B
Bash
Executable File
10 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
# help: For development, creates iso, kernel, initrd gzip compressed
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
./build
|
|
./prepare
|
|
INSTALLER=0 ROOTFS=0 ./package
|