11 lines
171 B
Bash
11 lines
171 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
# Move the debs to output
|
||
|
mkdir -p ./output
|
||
|
|
||
|
. ./scripts/source.sh
|
||
|
. ../scripts/patch.sh
|
||
|
. ../scripts/config.sh
|
||
|
. ../scripts/build.sh
|
||
|
. ../scripts/output.sh
|