9 lines
250 B
Bash
9 lines
250 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This is a helper script used to do the actual build.
|
||
|
# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline.
|
||
|
|
||
|
|
||
|
[ -x ./PepDeb64/pepbld.sh ] && (cd PepDeb64 ; sudo ./pepbld.sh ; cd ../)
|
||
|
|