Prechádzať zdrojové kódy

fix: Shellcheck issues

Owen Diffey 11 mesiacov pred
rodič
commit
365cc21878
2 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  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