diff options
| -rwxr-xr-x | build_release.sh | 2 | ||||
| -rwxr-xr-x | release.sh | 2 | ||||
| -rwxr-xr-x | releasediff.sh | 2 | ||||
| -rwxr-xr-x | releasetag.sh | 2 | ||||
| -rwxr-xr-x | releasevars.sh | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/build_release.sh b/build_release.sh index 57334c3..0a392eb 100755 --- a/build_release.sh +++ b/build_release.sh @@ -21,7 +21,7 @@ set -e SCRIPT=$0 REPLICANT_DIR=$1 -. releasevars.sh +. $(dirname $0)/releasevars.sh ARGS_COUNT=1 parallel_tasks=$(echo "$(grep 'processor' /proc/cpuinfo | wc -l ) + 1" | bc) @@ -232,7 +232,7 @@ REPLICANT_DIR="$(realpath $1)" RELEASE_DIR="$(realpath $2)" RELEASE_TYPE="$3" -. releasevars.sh +. $(dirname $0)/releasevars.sh RELEASE_TOOLS_DIR="$REPLICANT_DIR/out/host/linux-x86/bin" RELEASE_TOOLS="adb fastboot heimdall mkbootimg unpackbootimg" diff --git a/releasediff.sh b/releasediff.sh index 98a53ac..8e8582f 100755 --- a/releasediff.sh +++ b/releasediff.sh @@ -21,7 +21,7 @@ SCRIPT=$0 REPLICANT_DIR=$1 RELEASE_DIR=$2 -. releasevars.sh +. $(dirname $0)/releasevars.sh ARGS_COUNT=2 diff --git a/releasetag.sh b/releasetag.sh index 874ef2e..c8f6692 100755 --- a/releasetag.sh +++ b/releasetag.sh @@ -23,7 +23,7 @@ set -e SCRIPT=$0 REPLICANT_DIR=$1 -. releasevars.sh +. $(dirname $0)/releasevars.sh ARGS_COUNT=1 PUSH_REMOTE="git.replicant.us" diff --git a/releasevars.sh b/releasevars.sh index b0dd53b..b4e423b 100755 --- a/releasevars.sh +++ b/releasevars.sh @@ -14,7 +14,7 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -. common.sh +. $(dirname $0)/common.sh RELEASE="" |
