Browse Source

build.py: don't make assumptions on the generated pdf name

master
Dimitri Merejkowsky 4 years ago
parent
commit
09ee42e48f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cours/build.py

+ 2
- 2
cours/build.py View File

@@ -7,7 +7,7 @@ import subprocess

def run(*cmd):
print("$", *cmd)
process = subprocess.run(cmd)
process = subprocess.run(" ".join(cmd), shell=True)
if process.returncode != 0:
sys.exit(1)

@@ -47,7 +47,7 @@ def main():
# fmt: off
run(
"mv", "-v", "-f",
f"{build_path}/courspython.pdf",
f"{build_path}/*.pdf",
"../cours.pdf",
)
# fmt: on