1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-07 14:26:13 +02:00
build/pkg/rootfs/build

17 lines
219 B
Plaintext
Raw Normal View History

prepare() {
return
}
build() {
return
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
mkdir -p "$DEPLOY/dev" "$DEPLOY/sys" "$DEPLOY/proc"
mkdir -p "$DEPLOY/tmp" "$DEPLOY/var" "$DEPLOY/run"
}