Skip to content

Commit

Permalink
use correct make executable
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Nov 22, 2024
1 parent 68ab62a commit 49b9a3c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
distribution: 'temurin'
java-version: 22
cache: 'maven'
- name: Install correct make
run: choco install make
- name: Ensure to use tagged version
if: startsWith(github.ref, 'refs/tags/')
shell: bash
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This project uses the following JVM properties:
* JDK 22
* Maven
* MSVC 2022 toolchain (Visual Studio 2022, Workset "Desktop development with C++")
* make (chocolatey-version)

### Build
Start the _Developer PowerShell for Visual Studio 2022_ and run the following commands:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
</environmentVariables>
<arguments>
<argument>-Command</argument>
<argument>"&amp; {&amp;'${devShellPath}' &amp;&amp; cd ${project.basedir} &amp;&amp; make install}"</argument>
<argument>"&amp; {&amp;'${devShellPath}' &amp;&amp; cd ${project.basedir} &amp;&amp; 'C:\ProgramData\chocolatey\bin\make.exe' install}"</argument>
</arguments>
</configuration>
</execution>
Expand Down

0 comments on commit 49b9a3c

Please sign in to comment.