From e204de690b9596338db80d8086cdbd1d3c776363 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Thu, 23 Feb 2023 17:56:45 +0100 Subject: [PATCH] Add missing shbang line to shell script If it's executable, it should specify how it's to be executed. Change-Id: If5671712da3e1fbc42b15d22c1253129910091bc Reviewed-by: Laszlo Agocs --- tests/manual/rhi/displacement/buildshaders | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/manual/rhi/displacement/buildshaders b/tests/manual/rhi/displacement/buildshaders index 684a06d0117..87d14a47422 100755 --- a/tests/manual/rhi/displacement/buildshaders +++ b/tests/manual/rhi/displacement/buildshaders @@ -1,3 +1,4 @@ +#!/bin/sh qsb --glsl 320es,410 --hlsl 50 --msl 12 --msltess material.vert -o material.vert.qsb qsb --glsl 320es,410 --hlsl 50 --msl 12 material.frag -o material.frag.qsb qsb --glsl 320es,410 --msl 12 --tess-mode triangles material.tesc -o material.tesc.qsb