mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-15 06:50:22 +00:00
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PORTSDIR="$(dirname $(dirname $(realpath $0)))"
|
|
SCRIPTDIR="$(dirname $(realpath $0))"
|
|
|
|
[ -f $SCRIPTDIR/config ] && . $SCRIPTDIR/config
|
|
|
|
sudo $SCRIPTDIR/build.sh \
|
|
-zap \
|
|
-rebase \
|
|
-rootfs || exit 1
|
|
|
|
exit 0
|