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