Merge pull request #68 from YunoHost/fix-sudo-detection

fix sudo detection
This commit is contained in:
Alexandre Aubin 2019-04-02 21:01:27 +02:00 committed by GitHub
commit 5b4c4a81b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -575,7 +575,7 @@ class Script():
print_error("[YEP-2.12] You should avoid using 'rm -rf', please use 'ynh_secure_remove' instead")
if self.contains("sed -i"):
print_warning("[YEP-2.12] You should avoid using 'sed -i', please use 'ynh_replace_string' instead")
if self.contains("sudo"):
if self.contains("sudo "):
print_warning(
"[YEP-2.12] You should not need to use 'sudo', the script is being run as root. "
"(If you need to run a command using a specific user, use 'ynh_exec_as')"