1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 07:15:41 +00:00
Files
os/build.sh

18 lines
326 B
Bash
Raw Normal View History

2015-02-08 21:38:37 -07: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
make all
else
make DEV_BUILD=1 all
fi
2015-02-08 21:38:37 -07:00
2015-07-23 18:53:01 +05:00
ls -lh dist/artifacts