diff --git a/.github/workflows/CI-winpeas_build_test.yml b/.github/workflows/CI-winpeas_build_test.yml index 0315b4a..bb844fb 100644 --- a/.github/workflows/CI-winpeas_build_test.yml +++ b/.github/workflows/CI-winpeas_build_test.yml @@ -19,7 +19,7 @@ jobs: env: Solution_Path: 'winPEAS\winPEASexe\winPEAS.sln' Configuration: 'Release' - DotFuscatorLicensePath: '$env:USERPROFILE\AppData\Local\PreEmptive Solutions\Dotfuscator Community Edition\6.0' + DotFuscatorLicensePath: "$env:USERPROFILE\AppData\Local\PreEmptive Solutions\Dotfuscator Community Edition\6.0" DotFuscatorGeneratedPath: 'winPEAS\winPEASexe\binaries\Obfuscated Releases\Dotfuscated' DotFuscatorExePath: winPEAS\winPEASexe\Dotfuscator\DotfuscatorCE\dotfuscator.exe @@ -76,8 +76,8 @@ jobs: - name: Setup DotFuscator run: | 7z x winPEAS\winPEASexe\Dotfuscator\DotfuscatorCE.zip - mkdir -p "$env:DotFuscatorLicensePath" -erroraction 'silentlycontinue' - cp winPEAS\winPEASexe\Dotfuscator\DotfuscatorCE\license\* "$env:DotFuscatorLicensePath\" + mkdir -p $env:DotFuscatorLicensePath -erroraction 'silentlycontinue' + cp winPEAS\winPEASexe\Dotfuscator\DotfuscatorCE\license\* $env:DotFuscatorLicensePath\ # build obfuscated versions - name: Build obfuscated versions @@ -90,9 +90,9 @@ jobs: # copy the files - name: Copy Dotfuscator generated files run: | - cp "$env:DotFuscatorGeneratedPath\x64\winPEASx64.exe" "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASx64.exe" - cp "$env:DotFuscatorGeneratedPath\x86\winPEASx86.exe" "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASx86.exe" - cp "$env:DotFuscatorGeneratedPath\any\winPEASany.exe" "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASany.exe" + cp $env:DotFuscatorGeneratedPath\x64\winPEASx64.exe "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASx64.exe" + cp $env:DotFuscatorGeneratedPath\x86\winPEASx86.exe "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASx86.exe" + cp $env:DotFuscatorGeneratedPath\any\winPEASany.exe "winPEAS\winPEASexe\binaries\Obfuscated Releases\winPEASany.exe" # Git add - name: Create local changes