1
0
mirror of https://github.com/rancher/os.git synced 2025-07-05 19:16:13 +00:00
os/build.sh

18 lines
346 B
Bash
Raw Normal View History

2015-02-09 04:38:37 +00:00
#!/bin/bash
set -e
if [ "$1" != "--dev" ]; then
echo
echo Running \"production\" build. Will use lzma to compress initrd, which is somewhat slow...
echo Ctrl+C if you don\'t want this.
echo
echo For \"developer\" builds, run ./build.sh --dev
echo
dapper -k make all
else
dapper -k make DEV_BUILD=1 all
fi
2015-02-09 04:38:37 +00:00
2015-07-23 13:53:01 +00:00
ls -lh dist/artifacts