update @ Wed 27 Dec 05:47:10 EET 2023

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2023-12-27 05:47:10 +02:00
parent 3434fec2bf
commit 0d0635d0fd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2
2 changed files with 6 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -1507,6 +1507,11 @@ def main() -> int:
except KeyError: except KeyError:
return err(f"command {sys.argv[1]!r} does not exist") return err(f"command {sys.argv[1]!r} does not exist")
for file in ".editorconfig", ".clang-format":
if os.path.isfile(file):
log(f"copying {file!r} to /tmp")
shutil.copy(file, f"/tmp/{file}")
log("calling and timing the command") log("calling and timing the command")
if NCI: if NCI:
print() print()