mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- Documented tasks including skill downloads, JSON-RPC state management, and custom MCP server integration. - Outlined payment flow integration and various skill enhancements. - Added checklist for upcoming Android version and background processes.
11 lines
304 B
Bash
11 lines
304 B
Bash
#!/usr/bin/env bash
|
|
|
|
cp -R ./public/* ${1:-"dist"}
|
|
|
|
cp ./src/lib/rlottie/rlottie-wasm.wasm ${1:-"dist"}
|
|
|
|
cp ./node_modules/opus-recorder/dist/decoderWorker.min.wasm ${1:-"dist"}
|
|
|
|
cp -R ./node_modules/emoji-data-ios/img-apple-64 ${1:-"dist"}
|
|
cp -R ./node_modules/emoji-data-ios/img-apple-160 ${1:-"dist"}
|