From 8e36c8ab5ffb83825ce730cb24e1628662a82cb6 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Tue, 11 Oct 2016 22:53:36 +0200 Subject: [PATCH] bootstrap - bugfixes --- bootstrap.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index e63c140..4256b33 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,7 +1,6 @@ #!/bin/bash -declare -r BASE_DIR=$(cd "$(dirname $0)/../.." && pwd) -declare -r BOOTSTRAP_DIR="${BASE_DIR}/Bootstrap" +declare -r BASE_DIR=$(cd "$(dirname $0)" && pwd) -${BOOTSTRAP_DIR}/compile_pmodules.sh -${BOOTSTRAP_DIR}/install_pmodules.sh +${BASE_DIR}/compile_pmodules.sh +${BASE_DIR}/install_pmodules.sh