Skip to content

Commit

Permalink
Fix win build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipon committed May 18, 2024
1 parent 46ca2e9 commit b47444b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Env Variables
uses: ./.github/actions/set_env_var
with:
path: C:\bin\;C:\bin\ccache\
- run: .\setup.bat
- name: Configure MSVC Debug
run: python .\configure --ninja --static
Expand All @@ -193,10 +189,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Env Variables
uses: ./.github/actions/set_env_var
with:
path: C:\bin\ccache\
- run: .\setup.bat
- name: Configure MSVC Debug
run: python .\configure --vs --static
Expand All @@ -214,10 +206,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Env Variables
uses: ./.github/actions/set_env_var
with:
path: C:\bin\ccache\
- run: .\setup.bat
- name: Configure MSVC Release
run: python .\configure --vs --release
Expand Down
4 changes: 2 additions & 2 deletions python/vpy/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import subprocess
from . import cmd as cmd

GIT_BIN = 'git'

def clone(args: [str]):
args = [GIT_BIN, 'clone'] + args
subprocess.run(args)
cmd.execCmd(args)

0 comments on commit b47444b

Please sign in to comment.