From 66b1aa400b70f4a4646b286110b5fad9152b0984 Mon Sep 17 00:00:00 2001 From: Daniel Rose Date: Sat, 22 May 2021 16:04:20 -0400 Subject: [PATCH 1/3] Do not error if fusion360 directory already exists --- scripts/fusion360-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fusion360-install.sh b/scripts/fusion360-install.sh index 2dbb7f0..9e75a33 100644 --- a/scripts/fusion360-install.sh +++ b/scripts/fusion360-install.sh @@ -89,7 +89,7 @@ if [[ 1 -ne $# ]]; then WINEPREFIX=~/.fusion360 sh winetricks -q corefonts vcrun2017 msxml4 fontsmooth=rgb win10 && echo "Autodesk Fusion 360 will be installed and set up." - mkdir fusion360 && + mkdir -p fusion360 && cd fusion360 && wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe && From 657854e719b7964d97ca3aa29ee537c632ed2e5f Mon Sep 17 00:00:00 2001 From: Daniel Rose Date: Sat, 22 May 2021 16:05:17 -0400 Subject: [PATCH 2/3] Do not error if fusion360 directory already exists --- scripts/fusion360-flatpak-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fusion360-flatpak-install.sh b/scripts/fusion360-flatpak-install.sh index 80c5f58..9415a1a 100644 --- a/scripts/fusion360-flatpak-install.sh +++ b/scripts/fusion360-flatpak-install.sh @@ -73,7 +73,7 @@ flatpak run org.winehq.flatpak-proton-68-ge-1 winetricks -q corefonts vcrun2017 flatpak run org.winehq.flatpak-proton-68-ge-1 bash && cd $HOME && cd Downloads && -mkdir fusion360 && +mkdir -p fusion360 && cd fusion360 && wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe && From 9e85a029077b0a09a54401afb33da011fdb6f707 Mon Sep 17 00:00:00 2001 From: Daniel Rose Date: Sat, 22 May 2021 16:06:19 -0400 Subject: [PATCH 3/3] Do not error if fusion360 directory already exists --- scripts/fusion360-dxvk-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fusion360-dxvk-install.sh b/scripts/fusion360-dxvk-install.sh index 24aa9e8..8a4f08a 100644 --- a/scripts/fusion360-dxvk-install.sh +++ b/scripts/fusion360-dxvk-install.sh @@ -90,7 +90,7 @@ if [[ 1 -ne $# ]]; then WINEPREFIX=~/.fusion360 sh winetricks -q corefonts vcrun2017 msxml4 dxvk fontsmooth=rgb win10 && echo "Autodesk Fusion 360 will be installed and set up." - mkdir fusion360 && + mkdir -p fusion360 && cd fusion360 && wget https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20Admin%20Install.exe &&