diff options
Diffstat (limited to 'resources/scripts/misc/powertop.trisquel7')
-rwxr-xr-x | resources/scripts/misc/powertop.trisquel7 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/misc/powertop.trisquel7 b/resources/scripts/misc/powertop.trisquel7 index 215ae03c..473c8e28 100755 --- a/resources/scripts/misc/powertop.trisquel7 +++ b/resources/scripts/misc/powertop.trisquel7 @@ -21,7 +21,7 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -if [[ $EUID -ne 0 ]]; then +if [ $EUID -ne 0 ]; then printf "This script must be run as root\n" exit 1 fi |