From 0b3800fbe4735b48dda1b581410fca162b1c6c22 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 2 Oct 2024 04:48:18 -0400 Subject: [PATCH] feat(cli): add doom.sh for Android users Or any other Linux distros for which /usr/bin/env does not exist. Fix: #7655 --- bin/doom.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/doom.sh diff --git a/bin/doom.sh b/bin/doom.sh new file mode 100755 index 000000000..6370bda43 --- /dev/null +++ b/bin/doom.sh @@ -0,0 +1,6 @@ +#!/bin/bash +# +# On Android (and possibly other Linux distros), /usr/bin/env does not exist. +# This script exists as a workaround for those users. + +"$(dirname -- "${BASH_SOURCE:-$0}")/doom" "$@"