Skip to content

Commit 9897597

Browse files
committed
fix test -f
1 parent 521db66 commit 9897597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vulkan_prebuilt_helpers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function download_vulkan_installer() {
2222
local filename=$(_os_filename $os)
2323
local url=https://sdk.lunarg.com/sdk/download/$VULKAN_SDK_VERSION/$os/$filename?Human=true
2424
echo "_download_os_installer $os $filename $url" >&2
25-
if [[ test -f $filename ]] ; then
25+
if [[ -f $filename ]] ; then
2626
echo "using cached: $filename"
2727
else
2828
curl -s -L -o $filename $url

0 commit comments

Comments
 (0)