pymake

A build system based on Build Systems à la Carte
git clone https://git.grace.moe/pymake
Log | Files | Refs | README

commit 33495ebafcbb9da483574720f00f190969a1953d
parent 863b3ac8c051665a9503c3e577c52e334b42b468
Author: gracefu <81774659+gracefuu@users.noreply.github.com>
Date:   Fri, 18 Apr 2025 07:37:42 +0800

figure out octal syntax

Diffstat:
Mpackage.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.py b/package.py @@ -65,7 +65,7 @@ import os os.makedirs("dist", exist_ok=True) pb.write_bake("dist/make.py") -os.chmod("dist/make.py", int("644", 8)) +os.chmod("dist/make.py", 0o644) """, echo=make.EchoAll, )