Script was using /bin/sh and causing an error in nightly-oe-selftest build: /home/pokybuild/yocto-autobuilder/bin/checkvnc: 6: /home/pokybuild/yocto-autobuilder/bin/checkvnc: [[: not found
Changing script to use /bin/bash instead fixes the issue. Signed-off-by: Graydon, Tracy <[email protected]> --- bin/checkvnc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/checkvnc b/bin/checkvnc index 574ba48..11b1a41 100755 --- a/bin/checkvnc +++ b/bin/checkvnc @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # check if vnc server is running, and if not, cleanup and restart # -- 2.7.0 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
