Parcourir la source

fix: Shellcheck issues

Owen Diffey il y a 11 mois
Parent
commit
365cc21878
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  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