allow all build scripts to be ran outside this dir
this is useful for automation Reported-by: @Elahi
This commit is contained in:
parent
6ed7b600da
commit
b268099193
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
./pull-repos.sh
|
||||
|
||||
export action="${action:-deploy}"
|
||||
|
|
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
# includes functions:
|
||||
# common_start
|
||||
# common_end
|
||||
|
|
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
# includes functions:
|
||||
# common_start
|
||||
# common_end
|
||||
|
|
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
# includes functions:
|
||||
# common_start
|
||||
# common_end
|
||||
|
|
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
# includes functions:
|
||||
# common_start
|
||||
# common_end
|
||||
|
|
|
@ -6,6 +6,8 @@ set -u
|
|||
set -x
|
||||
|
||||
main() {
|
||||
cd "$(dirname "${0}")"
|
||||
|
||||
# includes functions:
|
||||
# common_start
|
||||
# common_end
|
||||
|
|
Reference in New Issue