From 0387b86a2715a0e063f02c0d3b7271e20f465577 Mon Sep 17 00:00:00 2001 From: Debanjum Date: Tue, 3 Jun 2025 16:22:06 -0700 Subject: [PATCH] Use portable comparator to get flags used to call dev_setup.sh --- scripts/dev_setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dev_setup.sh b/scripts/dev_setup.sh index 9a9afe03..ecb97898 100755 --- a/scripts/dev_setup.sh +++ b/scripts/dev_setup.sh @@ -7,11 +7,11 @@ INSTALL_FULL=false DEVCONTAINER=false for arg in "$@" do - if [ "$arg" == "--full" ] + if [ "$arg" = "--full" ] then INSTALL_FULL=true fi - if [ "$arg" == "--devcontainer" ] + if [ "$arg" = "--devcontainer" ] then DEVCONTAINER=true fi