Forráskód Böngészése

fix: Shellcheck issues

Owen Diffey 1 hónapja
szülő
commit
365cc21878
2 módosított fájl, 2 hozzáadás és 2 törlés
  1. 1 1
      backend/entrypoint.dev.sh
  2. 1 1
      frontend/entrypoint.dev.sh

+ 1 - 1
backend/entrypoint.dev.sh

@@ -2,7 +2,7 @@
 
 
 set -e
 set -e
 
 
-if [[ ! -d node_modules ]]; then
+if [ ! -d node_modules ]; then
     npm install
     npm install
 fi
 fi
 
 

+ 1 - 1
frontend/entrypoint.dev.sh

@@ -2,7 +2,7 @@
 
 
 set -e
 set -e
 
 
-if [[ ! -d node_modules ]]; then
+if [ ! -d node_modules ]; then
     npm install
     npm install
 fi
 fi