mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-22 17:57:46 +00:00
9 lines
373 B
Bash
Executable File
9 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
exec 2>> /tmp/qwen-wrapper-error.log
|
|
echo "$(date): Wrapper started" >> /tmp/qwen-wrapper-error.log
|
|
echo "$(date): PWD=$PWD" >> /tmp/qwen-wrapper-error.log
|
|
echo "$(date): Node=$(which node)" >> /tmp/qwen-wrapper-error.log
|
|
|
|
# 运行实际的 host.js
|
|
exec /usr/local/bin/node /Users/yiliang/projects/temp/qwen-code/packages/chrome-qwen-bridge/native-host/host.js
|