diff options
author | Geoff Levand <geoff@infradead.org> | 2020-03-19 20:34:28 -0700 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-03-20 13:08:55 -0400 |
commit | a73d4e1986fb34b325bc4e39b46a8adb85fd5e4d (patch) | |
tree | b1f0acd3ccad05e407021c92b7d326059a9ef561 /b4-wrapper.sh | |
parent | 367be74dfd02735cc989258d1a58ce05a8ebc886 (diff) | |
download | b4-a73d4e1986fb34b325bc4e39b46a8adb85fd5e4d.tar.gz |
Add b4-wrapper.sh script
Add the b4-wrapper.sh script that allows running
b4 from a git working directory.
Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'b4-wrapper.sh')
-rwxr-xr-x | b4-wrapper.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/b4-wrapper.sh b/b4-wrapper.sh new file mode 100755 index 0000000..cafeee1 --- /dev/null +++ b/b4-wrapper.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# +# Run b4 from a git checkout. +# + +SCRIPT_TOP="${SCRIPT_TOP:-$(cd "${BASH_SOURCE%/*}" && pwd)}" + +exec env PYTHONPATH="${SCRIPT_TOP}" python3 "${SCRIPT_TOP}/b4/command.py" "${@}" |