run command, cd in build and clean
This commit is contained in:
parent
1201987364
commit
c91c80c63f
|
@ -50,12 +50,26 @@ setupDb() {
|
||||||
|
|
||||||
P="$PWD"
|
P="$PWD"
|
||||||
clean() {
|
clean() {
|
||||||
|
cd "$(git rev-parse --show-toplevel)"
|
||||||
log "Rensar byggnad"
|
log "Rensar byggnad"
|
||||||
rm -rf artifacts
|
rm -rf artifacts
|
||||||
|
cd - >/dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
source "$P/buildScripts/build.sh"
|
cd "$(git rev-parse --show-toplevel)"
|
||||||
|
( source "buildScripts/build.sh" )
|
||||||
|
RES=$?
|
||||||
|
cd - >/dev/null
|
||||||
|
return $RES
|
||||||
|
}
|
||||||
|
|
||||||
|
run() {
|
||||||
|
build && {
|
||||||
|
cd "$(git rev-parse --show-toplevel)"
|
||||||
|
./artifacts/Main
|
||||||
|
cd - >/dev/null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ "$IS_OWNER" -ne 0 ] ; then
|
if [ "$IS_OWNER" -ne 0 ] ; then
|
||||||
|
@ -68,4 +82,4 @@ log "Redo" "!"
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
cd - >/dev/null 2>&1
|
cd - >/dev/null
|
||||||
|
|
Loading…
Reference in New Issue
Block a user