diff --git a/deployment_scripts/deploy_windows.ps1 b/deployment_scripts/deploy_windows.ps1 index 82c798512..3e10c365b 100644 --- a/deployment_scripts/deploy_windows.ps1 +++ b/deployment_scripts/deploy_windows.ps1 @@ -23,6 +23,10 @@ function Configure-precommit([String] $git_repo_dir) exit } Pop-Location + + # Set env variable to skip Swimm verification during pre-commit, Windows not supported yet + [System.Environment]::SetEnvironmentVariable('SKIP','swimm-verify',[System.EnvironmentVariableTarget]::User) + Write-Output "Pre-commit successfully installed" } @@ -273,6 +277,7 @@ function Deploy-Windows([String] $monkey_home = (Get-Item -Path ".\").FullName, $webClient.DownloadFile($SWIMM_URL, $swimm_filename) Start-Process $swimm_filename + "Script finished" }