mirror of
https://github.com/keylase/nvidia-patch.git
synced 2025-07-30 19:40:02 -07:00
Added root check to patch.sh and patch-fbc.sh
This commit is contained in:
parent
081807cc31
commit
5c7b570254
2 changed files with 18 additions and 0 deletions
|
@ -4,6 +4,15 @@ set -euo pipefail ; # <- this semicolon and comment make options apply
|
|||
# even when script is corrupt by CRLF line terminators (issue #75)
|
||||
# empty line must follow this comment for immediate fail with CRLF newlines
|
||||
|
||||
# root check
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
echo
|
||||
echo -e "Please run as root!"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
backup_path="/opt/nvidia/libnvidia-fbc-backup"
|
||||
silent_flag=''
|
||||
manual_driver_version=''
|
||||
|
|
9
patch.sh
9
patch.sh
|
@ -4,6 +4,15 @@ set -euo pipefail ; # <- this semicolon and comment make options apply
|
|||
# even when script is corrupt by CRLF line terminators (issue #75)
|
||||
# empty line must follow this comment for immediate fail with CRLF newlines
|
||||
|
||||
# root check
|
||||
if [ "$(id -u)" -ne 0 ]; then
|
||||
echo
|
||||
echo -e "Please run as root!"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
backup_path="/opt/nvidia/libnvidia-encode-backup"
|
||||
silent_flag=''
|
||||
manual_driver_version=''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue