updater.sh/prefsCleaner.sh: Remove extra slash

Co-authored-by: Mohammed Anas <triallax@tutanota.com>
This commit is contained in:
Celestial Nebula 2023-04-01 17:45:53 +00:00 committed by GitHub
parent bfd4ca467a
commit 18f58442b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ if [ "${EUID:-$(id -u)}" -eq 0 ]; then
elif [ -n "$(find ./ -user 0 -o -group 0)" ]; then
printf 'It looks like this script was previously run with elevated privileges,
you will need to change ownership of the following files to your user:\n'
find ./ -user 0 -o -group 0
find . -user 0 -o -group 0
exit 1
fi

View File

@ -15,7 +15,7 @@ if [ "${EUID:-$(id -u)}" -eq 0 ]; then
elif [ -n "$(find ./ -user 0 -o -group 0)" ]; then
printf 'It looks like this script was previously run with elevated privileges,
you will need to change ownership of the following files to your user:\n'
find ./ -user 0 -o -group 0
find . -user 0 -o -group 0
exit 1
fi