Files
Nasal-Interpreter/tools/push.nas
ValKmjolnir d56434ae28 optimize lib.nas
2023-12-06 20:10:07 +08:00

12 lines
280 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.");