Skip to content

cpp-packaging.yml: install patch.exe via choco on Windows #1005

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update setup_patch_from_git_windows.py
  • Loading branch information
dconeybe authored Jun 23, 2022
commit 565522361587407eb3fe4f9e185a20bd96824e07
2 changes: 1 addition & 1 deletion scripts/gha/setup_patch_from_git_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main(argv):
logging.info("Found: %s", git_executable)

logging.info("Searching for patch.exe")
patch_executable = git_executable.parent.parent / "usr" / "bin" / "patch.exe"
patch_executable = git_executable.parent / "patch.exe"
if not patch_executable.exists():
raise Exception(f"file not found: {patch_executable}")
logging.info("Found: %s", patch_executable)
Expand Down