Skip to content

Commit 24f95af

Browse files
Change Linux SDK tarball extension to reflect LunarG website (#265)
* Update install_dependencies_linux.sh Installation instructions referred to the VulkanSDK Linux tarball as a tar.gz, but on the lunarg website it is provided as a tar.xz. Changed the command to reflect that. * Update 02_Development_environment.adoc Linux installation instructions referred to the VulkanSDK Linux tarball as a .tgz, but on the lunarg website it is provided as a tar.xz. Changed the command to reflect that.
1 parent 3fdc366 commit 24f95af

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

en/02_Development_environment.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ link to the latest on like so:
317317
[,shell]
318318
----
319319
pushd vulkansdk
320-
tar -xzf vulkansdk-linux-x86_64-1.4.304.1.tgz
320+
tar -xf vulkansdk-linux-x86_64-1.4.304.1.tar.xz
321321
ln -s 1.4.304.1 default
322322
----
323323

scripts/install_dependencies_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ echo "Now you need to install the Vulkan SDK:"
121121
echo "1. Download the tarball from https://vulkan.lunarg.com/"
122122
echo "2. Extract it to a convenient location, for example:"
123123
echo " mkdir -p ~/vulkansdk"
124-
echo " tar -xzf vulkansdk-linux-x86_64-<version>.tar.gz -C ~/vulkansdk"
124+
echo " tar -xf vulkansdk-linux-x86_64-<version>.tar.xz -C ~/vulkansdk"
125125
echo " cd ~/vulkansdk"
126126
echo " ln -s <version> default"
127127
echo ""

0 commit comments

Comments
 (0)