Browse Source

fix: Shellcheck issues

Owen Diffey 1 month ago
parent
commit
365cc21878
2 changed files with 2 additions and 2 deletions
  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