Browse Source

fix(perms): corrects tab (#3531)

Removes erroneous TAB character.
Fixes #3530
pull/3563/head
AnthonyAMC 4 years ago
committed by GitHub
parent
commit
9b325c7c26
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lgsm/functions/check_permissions.sh

6
lgsm/functions/check_permissions.sh

@ -31,13 +31,13 @@ fn_check_ownership(){
{ {
echo -e "User\tGroup\tFile\n" echo -e "User\tGroup\tFile\n"
if [ "${selfownissue}" == "1" ]; then if [ "${selfownissue}" == "1" ]; then
find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n" find "${rootdir}/${selfname}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
fi fi
if [ "${funcownissue}" == "1" ]; then if [ "${funcownissue}" == "1" ]; then
find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n" find "${functionsdir}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
fi fi
if [ "${filesownissue}" == "1" ]; then if [ "${filesownissue}" == "1" ]; then
find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t\t%g\t%p\n" find "${serverfiles}" -not -user "$(whoami)" -printf "%u\t%g\t%p\n"
fi fi
} | column -s $'\t' -t | tee -a "${lgsmlog}" } | column -s $'\t' -t | tee -a "${lgsmlog}"

Loading…
Cancel
Save