From f90996ddb9818367af561cf1874ca3cd1b9e24ceef4c4a575eea538eca206b76 Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Thu, 21 Apr 2022 05:15:46 +0000 Subject: [PATCH] Fix potential bashism from rpmlint OBS-URL: https://build.opensuse.org/package/show/editors/helix?expand=0&rev=3 --- helix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix.sh b/helix.sh index 0833bf6..742bfd2 100644 --- a/helix.sh +++ b/helix.sh @@ -1,6 +1,6 @@ #!/bin/sh -if [ "$USER" == "root" ] +if [ "$USER" = "root" ] then HELIX_RUNTIME=/usr/lib64/helix/runtime exec /usr/lib64/helix/hx "$@" else