tao-shen commited on
Commit
0fa48ff
Β·
verified Β·
1 Parent(s): f18a4b6

Upload scripts/entrypoint.sh with huggingface_hub

Browse files
Files changed (1) hide show
  1. scripts/entrypoint.sh +3 -2
scripts/entrypoint.sh CHANGED
@@ -46,8 +46,9 @@ fi
46
  # ── Build artifacts check ───────────────────────────────────────────────────
47
  cd /app/openclaw
48
  echo "[entrypoint] Build artifacts check:"
49
- test -f dist/entry.js && echo " OK dist/entry.js" || echo " WARNING: dist/entry.js missing!"
50
- test -f dist/plugin-sdk/index.js && echo " OK dist/plugin-sdk/index.js" || echo " WARNING: dist/plugin-sdk/index.js missing!"
 
51
  echo " Extensions: $(ls extensions/ 2>/dev/null | wc -l | tr -d ' ') found"
52
  echo " Global extensions link: $(readlink /home/node/.openclaw/extensions 2>/dev/null || echo 'NOT SET')"
53
 
 
46
  # ── Build artifacts check ───────────────────────────────────────────────────
47
  cd /app/openclaw
48
  echo "[entrypoint] Build artifacts check:"
49
+ test -f dist/entry.js && echo " OK dist/entry.js" || echo " INFO: dist/entry.js not found (pre-built image may use openclaw.mjs)"
50
+ test -f openclaw.mjs && echo " OK openclaw.mjs" || echo " INFO: openclaw.mjs not found"
51
+ test -f dist/plugin-sdk/index.js && echo " OK dist/plugin-sdk/index.js" || echo " INFO: dist/plugin-sdk/index.js not found"
52
  echo " Extensions: $(ls extensions/ 2>/dev/null | wc -l | tr -d ' ') found"
53
  echo " Global extensions link: $(readlink /home/node/.openclaw/extensions 2>/dev/null || echo 'NOT SET')"
54