updates vfx scripts

This commit is contained in:
2024-09-26 12:26:12 -07:00
parent a44dc95127
commit b25dd03d56
3 changed files with 32 additions and 3 deletions

View File

@@ -6,7 +6,21 @@ if [ -z "$version" ]; then
version=default_version
fi
sudo SKIP_PACKAGE_CHECK=1 ~/Downloads/DaVinci_Resolve_Studio_${version}_Linux/DaVinci_Resolve_Studio_${version}_Linux.run
installer_path=~/Downloads/DaVinci_Resolve_Studio_${version}_Linux/DaVinci_Resolve_Studio_${version}_Linux.run
read -p "Make sure the installer is located at '~/Downloads/Nuke${version}-linux-x86_64.run'. Press Enter to continue, or n to cancel..." answer
case $answer in
[Nn]*)
echo "Installation cancelled"
exit 0
;;
*)
echo "Running installer..."
;;
esac
sudo SKIP_PACKAGE_CHECK=1 ${installer_path}
sudo dnf install libxcrypt-compat libcurl libcurl-devel mesa-libGLU -y