7 lines
254 B
Bash
Executable File
7 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
cd /Users/leidianyayi/Documents/GitHub/ModelTest20260714/GLM5.2
|
|
LOG=/Users/leidianyayi/Documents/GitHub/ModelTest20260714/GLM5.2/smoke.log
|
|
echo "START $(date)" > "$LOG"
|
|
node tools/smoke.mjs >> "$LOG" 2>&1
|
|
echo "EXIT=$? END $(date)" >> "$LOG"
|