Use portable comparator to get flags used to call dev_setup.sh

This commit is contained in:
Debanjum
2025-06-03 16:22:06 -07:00
parent c6670e815a
commit 0387b86a27

View File

@@ -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