9 lines
239 B
Bash
9 lines
239 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 AçorOS from our CI|CD pipeline.
|
||
|
|
||
|
|
||
|
[ -x ./Cinnamon/build.sh ] && (cd Cinnamon ; sudo ./build.sh ; cd ../)
|
||
|
|