mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-02 19:00:47 +08:00
🎨 format
This commit is contained in:
@@ -21,7 +21,7 @@ if (size(arg)<1) {
|
||||
|
||||
var content = io.readfile(arg[0], "r");
|
||||
var tail_len = 0;
|
||||
while(math.mod(size(content), 256*3)!=0) {
|
||||
while (math.mod(size(content), 256*3)!=0) {
|
||||
content ~= "A";
|
||||
tail_len += 1;
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ use std.unix;
|
||||
|
||||
println("[", os.time(), "] (=.=) auto push, please wait...");
|
||||
|
||||
while(system("git push")!=0) {
|
||||
while (system("git push")!=0) {
|
||||
println("[", os.time(), "] (ToT) failed to push, retrying...");
|
||||
unix.sleep(0.5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user