Spaces:
Paused
Paused
Upload scripts/entrypoint.sh with huggingface_hub
Browse files- 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 "
|
| 50 |
-
test -f
|
|
|
|
| 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 |
|