mirror of
https://github.com/rancher/os.git
synced 2025-06-18 19:27:26 +00:00
15 lines
187 B
Bash
Executable File
15 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
if [ "$ROOTFS" != "0" ]; then
|
|
./package-rootfs
|
|
fi
|
|
./package-initrd
|
|
|
|
if [ "$ARCH" == "amd64" ]; then
|
|
./package-installer
|
|
./package-iso
|
|
fi
|