mirror of
https://github.com/pygos/build.git
synced 2024-11-16 16:37:10 +01:00
dbbb1889f4
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
16 lines
219 B
Text
Executable file
16 lines
219 B
Text
Executable file
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"
|
|
}
|