From 35c7b5d7dddd30f97e72b86373bf2c96dd1bcd18 Mon Sep 17 00:00:00 2001 From: Bing Wang Date: Fri, 8 Mar 2024 07:40:27 +0800 Subject: [PATCH] Add vulkan linux dependency (#8932) Release Notes: - Fixed ([#8934](https://github.com/zed-industries/zed/issues/8934)). Optionally, include screenshots / media showcasing your addition that can be included in the release notes. **or** - N/A Signed-off-by: pigletfly --- script/linux | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script/linux b/script/linux index 9f4e0402c2..4c091e7d6c 100755 --- a/script/linux +++ b/script/linux @@ -14,6 +14,7 @@ if [[ -n $apt ]]; then libxkbcommon-x11-dev libssl-dev libzstd-dev + libvulkan-dev ) $maysudo "$apt" install -y "${deps[@]}" exit 0 @@ -30,6 +31,7 @@ if [[ -n $dnf ]]; then libxkbcommon-x11-devel openssl-devel libzstd-devel + libvulkan-devel ) $maysudo "$dnf" install -y "${deps[@]}" exit 0 @@ -46,6 +48,7 @@ if [[ -n $zyp ]]; then libxkbcommon-x11-devel openssl-devel libzstd-devel + libvulkan-devel ) $maysudo "$zyp" install -y "${deps[@]}" exit 0 @@ -79,6 +82,7 @@ if [[ -n $xbps ]]; then libzstd-devel openssl-devel wayland-devel + libvulkan-devel ) $maysudo "$xbps" -Syu "${deps[@]}" exit 0