mirror of
https://github.com/rancher/os.git
synced 2025-06-21 04:31:55 +00:00
9 lines
156 B
Plaintext
9 lines
156 B
Plaintext
|
#!/bin/bash
|
||
|
# help: For development, creates iso, kernel, initrd gzip compressed
|
||
|
|
||
|
cd $(dirname $0)
|
||
|
|
||
|
./build
|
||
|
./prepare
|
||
|
COMPRESS="gzip -1" ROOTFS=0 ./package
|