Procházet zdrojové kódy

fix: Shellcheck issues

Owen Diffey před 11 měsíci
rodič
revize
365cc21878
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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
 
-if [[ ! -d node_modules ]]; then
+if [ ! -d node_modules ]; then
     npm install
 fi
 

+ 1 - 1
frontend/entrypoint.dev.sh

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