diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-10-04 01:37:08 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-10-04 01:37:08 +0200 |
commit | e277abe843e6ad38b2a727b593fdc83f11164821 (patch) | |
tree | 1efdbb4cc05afc8094221cfc1556e453c2489586 /install.sh | |
parent | e80d7676d495ec703f0cedc10599e7c0d49a4f92 (diff) |
Stupid mistake. Old /usr/local/bin/gpu-screen-recorder overwrites /usr/bin/gpu-screen-recorder path. Make installer install to both paths to fix past mistakes
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,5 +6,6 @@ cd "$script_dir" [ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1 ./build.sh +install -Dm755 "gpu-screen-recorder" "/usr/local/bin/gpu-screen-recorder" install -Dm755 "gpu-screen-recorder" "/usr/bin/gpu-screen-recorder" echo "Successfully installed gpu-screen-recorder" |