From 77d08bb399619f9f9c2c883804e0f1e3ce362f47 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 31 Jan 2021 20:13:33 +0000 Subject: [PATCH] Do not ask about copying files in the source directory in the github action; Added --non-interactive --- .github/workflows/main.yml | 2 +- buildqhelp.py | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2e2d79a..2ce6849 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,7 @@ jobs: # run: python2 ./update.py - name: Generate freecad.qhc and freecad.qch files - run: python2 ./buildqhelp.py + run: python2 ./buildqhelp.py --non-interactive - name: Generate freecad.pdf run: python2 ./buildpdf.py diff --git a/buildqhelp.py b/buildqhelp.py index bf29346..a973d77 100755 --- a/buildqhelp.py +++ b/buildqhelp.py @@ -68,7 +68,15 @@ def crawl(): print("Error at compiling") return 1 if VERBOSE: print("All done!") - i=raw_input("Copy the files to their correct location in the source tree? y/n (default=no) ") + if "--yes-copy" in sys.argv: + i="yes" + elif "--no-copy" in sys.argv: + i="no" + else: + try: + i=raw_input("Copy the files to their correct location in the source tree? y/n (default=no) ") + except: + i="no" if i.upper() in ["Y","YES"]: shutil.copy("localwiki/freecad.qch","../../Doc/freecad.qch") shutil.copy("localwiki/freecad.qhc","../../Doc/freecad.qhc")