From ec4d87e06eeb9709e1d7b2f6aa072450712bf51d Mon Sep 17 00:00:00 2001 From: Zach Hyatt Date: Fri, 20 May 2022 15:56:15 -0700 Subject: [PATCH] Fix improper string comparison --- ci/actions/windows/deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/actions/windows/deploy.ps1 b/ci/actions/windows/deploy.ps1 index d3bdfd4dd..dae7471d6 100644 --- a/ci/actions/windows/deploy.ps1 +++ b/ci/actions/windows/deploy.ps1 @@ -10,7 +10,7 @@ else { $network_cfg = "live" } -if ( ${env:GITHUB_REPOSITORY} == "nanocurrency/nano-node" ) { +if ( ${env:GITHUB_REPOSITORY} -eq "nanocurrency/nano-node" ) { $directory=$network_cfg } else {