aboutsummaryrefslogtreecommitdiffstats
path: root/t/lib-sudo.sh
diff options
context:
space:
mode:
authorAndrew Kreimer <algonell@gmail.com>2024-10-10 18:11:22 +0300
committerJunio C Hamano <gitster@pobox.com>2024-10-10 13:31:14 -0700
commit41869f7447a5b9e904aaa9aa5b77e7ce49b7292a (patch)
tree396db03a1f9d33ba4461c32c339c572601812965 /t/lib-sudo.sh
parent897124aa1bcdfa7e774742d0c16e1c2a18e2487c (diff)
downloadgit-41869f7447a5b9e904aaa9aa5b77e7ce49b7292a.tar.gz
t: fix typos
Fix typos via codespell. Signed-off-by: Andrew Kreimer <algonell@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-sudo.sh')
-rw-r--r--t/lib-sudo.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib-sudo.sh b/t/lib-sudo.sh
index b4d7788f4e..477e0fdc04 100644
--- a/t/lib-sudo.sh
+++ b/t/lib-sudo.sh
@@ -6,7 +6,7 @@ run_with_sudo () {
local RUN="$TEST_DIRECTORY/$$.sh"
write_script "$RUN" "$TEST_SHELL_PATH"
# avoid calling "$RUN" directly so sudo doesn't get a chance to
- # override the shell, add aditional restrictions or even reject
+ # override the shell, add additional restrictions or even reject
# running the script because its security policy deem it unsafe
sudo "$TEST_SHELL_PATH" -c "\"$RUN\""
ret=$?