Files
Nasal-Interpreter/tools/push.nas
ValKmjolnir af3d93ab64
Some checks failed
Nasal Interpreter Test / mac-aarch64 (push) Has been cancelled
Nasal Interpreter Test / linux-x86_64 (push) Has been cancelled
🎨 format
2025-06-02 13:43:00 +08:00

12 lines
281 B
Plaintext

use std.os;
use std.unix;
println("[", os.time(), "] (=.=) auto push, please wait...");
while (system("git push")!=0) {
println("[", os.time(), "] (ToT) failed to push, retrying...");
unix.sleep(0.5);
}
println("[", os.time(), "] (^o^) auto push complete.");