Skip to content

Commit 9b325c7

Browse files
authored
fix(perms): corrects tab (#3531)
Removes erroneous TAB character. Fixes #3530
1 parent dd3f554 commit 9b325c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lgsm/functions/check_permissions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ fn_check_ownership(){
3131
{
3232
echo -e "User\tGroup\tFile\n"
3333
if [ "${selfownissue}" == "1" ]; then
34-
find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
34+
find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
3535
fi
3636
if [ "${funcownissue}" == "1" ]; then
37-
find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
37+
find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
3838
fi
3939
if [ "${filesownissue}" == "1" ]; then
40-
find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n"
40+
find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
4141
fi
4242

4343
} | column -s $'\t' -t | tee -a "${lgsmlog}"

0 commit comments

Comments
 (0)