mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-16 22:23:37 +02:00
fix typo in error message ("as not permitted")
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -20,7 +20,7 @@ main()
|
|||||||
id -u 1>/dev/null 2>/dev/null || \
|
id -u 1>/dev/null 2>/dev/null || \
|
||||||
fail "cannot ascertain user id"
|
fail "cannot ascertain user id"
|
||||||
if [ "$(id -u)" = "0" ]; then
|
if [ "$(id -u)" = "0" ]; then
|
||||||
fail "running lbmk as root as not permitted"
|
fail "running lbmk as root is not permitted"
|
||||||
fi
|
fi
|
||||||
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@ main()
|
|||||||
id -u 1>/dev/null 2>/dev/null || \
|
id -u 1>/dev/null 2>/dev/null || \
|
||||||
err "cannot ascertain user id"
|
err "cannot ascertain user id"
|
||||||
if [ "$(id -u)" = "0" ]; then
|
if [ "$(id -u)" = "0" ]; then
|
||||||
err "running lbmk as root as not permitted"
|
err "running lbmk as root is not permitted"
|
||||||
fi
|
fi
|
||||||
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ main()
|
|||||||
|
|
||||||
mode="${1}"
|
mode="${1}"
|
||||||
if [ "$(id -u)" = "0" ] && [ "${mode}" != "dependencies" ]; then
|
if [ "$(id -u)" = "0" ] && [ "${mode}" != "dependencies" ]; then
|
||||||
err "running lbmk as root as not permitted"
|
err "running lbmk as root is not permitted"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
./checkgit || err "Please read: https://libreboot.org/docs/build/"
|
||||||
|
|||||||
Reference in New Issue
Block a user