From f27b927dd96012fd00e0dbbeddc4b980ff927fb2 Mon Sep 17 00:00:00 2001 From: Mayank Patibandla <34776435+mayankpatibandla@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:57:29 -0400 Subject: [PATCH] Fix interpret-cc in workflow --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76145e6b..7c11183b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,8 +66,8 @@ jobs: run: | python3 version.py pyinstaller pros.spec - pyinstaller --onefile pros/cli/compile_commands/intercept-cc.py --name=intercept-cc - pyinstaller --onefile pros/cli/compile_commands/intercept-cc.py --name=intercept-c++ + pyinstaller --onefile pros/cli/compile_commands/intercept_cc.py --name=intercept-cc + pyinstaller --onefile pros/cli/compile_commands/intercept_cc.py --name=intercept-c++ if: matrix.os != 'macos-latest' - name: Run Pyinstaller MacOS @@ -77,8 +77,8 @@ jobs: pip3 install -e ./charset_normalizer python3 version.py pyinstaller pros-macos.spec - pyinstaller --onefile pros/cli/compile_commands/intercept-cc.py --name=intercept-cc --target-arch=universal2 - pyinstaller --onefile pros/cli/compile_commands/intercept-cc.py --name=intercept-c++ --target-arch=universal2 + pyinstaller --onefile pros/cli/compile_commands/intercept_cc.py --name=intercept-cc --target-arch=universal2 + pyinstaller --onefile pros/cli/compile_commands/intercept_cc.py --name=intercept-c++ --target-arch=universal2 if: matrix.os == 'macos-latest' - name: Package Everything Up