-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathbuildAll.bash
More file actions
executable file
·17 lines (17 loc) · 675 Bytes
/
buildAll.bash
File metadata and controls
executable file
·17 lines (17 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
# Copyright 2017-2021 (c) all rights reserved
# by SDRausty https://sdrausty.github.io
#####################################################################
set -Eeuo pipefail
shopt -s nullglob globstar
export RDR="$HOME/buildAPKs"
. "$RDR/scripts/bash/init/atrap.bash" 67 68 69 "${0##*/} buildAll.bash"
export NUM="$(date +%s)"
export RDR="$HOME/buildAPKs"
. "$RDR"/scripts/bash/shlibs/lock.bash wake.start
. "$RDR"/scripts/bash/init/ushlibs.bash
. "$RDR"/scripts/bash/shlibs/buildAPKs/init/build.buildAPKs.modules.bash
cd "$RDR"/sources/
. "$RDR"/scripts/bash/build/build.in.dir.bash
. "$RDR"/scripts/bash/shlibs/lock.bash wake.stop
# buildAll.bash EOF