Initial commit: yu-zhi-ran platform with automation integration
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
cd /root/.openclaw/workspaces/yzr-yxl/projects/yu-zhi-ran
|
||||
if [ "$1" == "publisher" ]; then
|
||||
echo "=== Testing publisher ==="
|
||||
python3 scripts/publisher.py
|
||||
echo "=== Publisher exit code: $? ==="
|
||||
elif [ "$1" == "creator" ]; then
|
||||
echo "=== Testing creator ==="
|
||||
python3 scripts/creator.py
|
||||
echo "=== Creator exit code: $? ==="
|
||||
else
|
||||
echo "=== Testing collector ==="
|
||||
python3 scripts/collector.py
|
||||
echo "=== Collector exit code: $? ==="
|
||||
fi
|
||||
Reference in New Issue
Block a user