updates vfx scripts
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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]*)
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user