Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit e8c04ab

Browse files
authored
Fixing BLT executable. (#933)
1 parent 0ae7c39 commit e8c04ab

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

bin/blt

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ else
77
fi
88

99
if [ -f "$GIT_ROOT/vendor/acquia/blt/blt.sh" ]; then
10-
$GIT_ROOT/vendor/acquia/blt/blt.sh "$@"
10+
cd $GIT_ROOT
11+
./vendor/acquia/blt/blt.sh "$@"
1112
else
1213
echo "Error: You must run this command from within a BLT-generated project repository!"
1314
fi

blt.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
# @todo Move this into bin/blt directly.
4+
35
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
46
BIN=$(cd ${SCRIPT_DIR}/../../bin && pwd)
57
PHING=${BIN}/phing

0 commit comments

Comments
 (0)