From a283f7961410fe67fcc1ea2a80d18ee9f4e11198 Mon Sep 17 00:00:00 2001 From: gpotter2 <gpotter2@users.noreply.github.com> Date: Thu, 23 Feb 2017 23:14:07 +0100 Subject: [PATCH] Fix paths --- .appveyor/InstallWindump.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor/InstallWindump.ps1 b/.appveyor/InstallWindump.ps1 index 158cbd0a..c4f2cc0a 100644 --- a/.appveyor/InstallWindump.ps1 +++ b/.appveyor/InstallWindump.ps1 @@ -1,4 +1,4 @@ -wget https://github.com/hsluoyz/WinDump/releases/download/v0.1/WinDump-for-Npcap-0.1.zip -UseBasicParsing -OutFile .\npcap.zip +wget https://github.com/hsluoyz/WinDump/releases/download/v0.2/WinDump-for-Npcap-0.2.zip -UseBasicParsing -OutFile $PSScriptRoot"\npcap.zip" Add-Type -AssemblyName System.IO.Compression.FileSystem function Unzip { @@ -7,6 +7,6 @@ function Unzip [System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath) } Unzip $PSScriptRoot"\npcap.zip" $PSScriptRoot"\npcap" -Remove-Item ".\npcap.zip" -Move-Item -Force ".\npcap\x64\WinDump.exe" "C:\Windows\System32\windump.exe" -Remove-Item ".\npcap" -recurse \ No newline at end of file +Remove-Item $PSScriptRoot"\npcap.zip" +Move-Item -Force $PSScriptRoot"\npcap\x64\WinDump.exe" "C:\Windows\System32\windump.exe" +Remove-Item $PSScriptRoot"\npcap" -recurse -- GitLab