diff --git a/vfx/fusion.sh b/vfx/fusion.sh index ec64080..b0e19b6 100644 --- a/vfx/fusion.sh +++ b/vfx/fusion.sh @@ -7,7 +7,22 @@ if [ -z "$version" ]; then fi vnum="${version%%b*}" -sudo SKIP_PACKAGE_CHECK=1 ~/Downloads/Blackmagic_Fusion_Studio_${version}_Linux/Blackmagic_Fusion_Studio_Linux_${vnum}_installer.run +installer_path=~/Downloads/Blackmagic_Fusion_Studio_${version}_Linux/Blackmagic_Fusion_Studio_Linux_${vnum}_installer.run + +read -p "Make sure the installer is located at '${installer_path}'. 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 # cd /opt/resolve/libs diff --git a/vfx/nuke.sh b/vfx/nuke.sh index 231eea4..32729d1 100644 --- a/vfx/nuke.sh +++ b/vfx/nuke.sh @@ -9,7 +9,7 @@ fi vnum="${version%%v*}" # echo "Version num:${vnum}" -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 +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]*) diff --git a/vfx/resolve.sh b/vfx/resolve.sh index dfabd74..2c14bda 100644 --- a/vfx/resolve.sh +++ b/vfx/resolve.sh @@ -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