diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-07-14 18:35:51 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-07-14 18:35:51 +0200 |
commit | 2582981719e38ba18f638c103a117faf9551bd28 (patch) | |
tree | f60eddbccf2dad26239485f32c9cc69eba1df94f /misc/scripts | |
parent | 2c11e6d9efc42370a8d7537eaff8b1ea78a283e5 (diff) |
Download Vulkan SDK disk image to a temporary folder in the script
This prevents a `vulkan-sdk.dmg` file from lingering in the current
working directory after installing the Vulkan SDK.
Diffstat (limited to 'misc/scripts')
-rwxr-xr-x | misc/scripts/install_vulkan_sdk_macos.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/misc/scripts/install_vulkan_sdk_macos.sh b/misc/scripts/install_vulkan_sdk_macos.sh index e03a907749..817302d77f 100755 --- a/misc/scripts/install_vulkan_sdk_macos.sh +++ b/misc/scripts/install_vulkan_sdk_macos.sh @@ -4,10 +4,11 @@ set -euo pipefail IFS=$'\n\t' # Download and install the Vulkan SDK. -curl -LO "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -hdiutil attach vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk +curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg" -o /tmp/vulkan-sdk.dmg +hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk /Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \ --accept-licenses --default-answer --confirm-command install hdiutil detach /Volumes/vulkan-sdk +rm -f /tmp/vulkan-sdk.dmg echo 'Vulkan SDK installed successfully! You can now build Godot by running "scons".' |