Browse Source

fix: Shellcheck issues

Owen Diffey 11 tháng trước cách đây
mục cha
commit
365cc21878
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  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