From 1d2fa7f269bfc5de0612736254c7d372f30825c0 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Sun, 20 Sep 2020 19:56:37 -0500 Subject: [PATCH] Convert scripts to PowerShell --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 635283e..1029f49 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,16 +7,16 @@ environment: build: parallel: true build_script: -- cmd: >- +- ps: >- git clone --depth=1 https://github.com/ModOrganizer2/modorganizer-umbrella.git c:\projects\modorganizer-umbrella 2> $null - git checkout $(git show-ref --verify --quiet refs/remotes/origin/%APPVEYOR_REPO_BRANCH% || echo '-b') %APPVEYOR_REPO_BRANCH% + git checkout $(git show-ref --verify --quiet refs/remotes/origin/${env:APPVEYOR_REPO_BRANCH} || echo '-b') ${env:APPVEYOR_REPO_BRANCH} mkdir c:\projects\modorganizer-build -type directory cd c:\projects\modorganizer-umbrella - C:\Python37-x64\python.exe unimake.py -d c:\projects\modorganizer-build -s Appveyor_Build=True %APPVEYOR_PROJECT_NAME% + C:\Python37-x64\python.exe unimake.py -d c:\projects\modorganizer-build -s Appveyor_Build=True ${env:APPVEYOR_PROJECT_NAME} artifacts: - path: build\src\proxy\plugin_python.dll name: plugin_python_dll