From 48746e7c4423989e9290257ae846eb150fe934d7 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Mon, 2 Sep 2024 09:40:19 +0200 Subject: [PATCH] bugfix: using executable instead of go runtime --- run.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run.ps1 b/run.ps1 index 2162fcf..56eb343 100644 --- a/run.ps1 +++ b/run.ps1 @@ -31,7 +31,7 @@ $ctxEnable = New-Object System.Windows.Forms.ToolStripMenuItem $ctxEnable.Text = 'Enable Proxy' $ctxEnable.Add_Click({ $trayIcon.Icon = './assets/ICON_Enabled.ico' - Start-Process powershell.exe -WindowStyle Hidden -ArgumentList '-Command', 'go run . set' + Start-Process powershell.exe -WindowStyle Hidden -ArgumentList '-Command', '.\ProxySwitcher.exe set' }) # Add "Disable Proxy Setting" menu item @@ -39,14 +39,14 @@ $ctxDisable = New-Object System.Windows.Forms.ToolStripMenuItem $ctxDisable.Text = 'Disable Proxy' $ctxDisable.Add_Click({ $trayIcon.Icon = './assets/ICON_Disabled.ico' - Start-Process powershell.exe -WindowStyle Hidden -ArgumentList '-Command', 'go run . unset' + Start-Process powershell.exe -WindowStyle Hidden -ArgumentList '-Command', '.\ProxySwitcher.exe unset' }) # Add "Save Proxy Setting" menu item $ctxSave = New-Object System.Windows.Forms.ToolStripMenuItem $ctxSave.Text = 'Save New Config' $ctxSave.Add_Click({ - Start-Process powershell.exe -ArgumentList '-Command', 'go run . save' + Start-Process powershell.exe -ArgumentList '-Command', '.\ProxySwitcher.exe save' }) # Add "Exit" menu item