1
mirror of https://github.com/carlospolop/PEASS-ng synced 2024-11-20 12:39:21 +01:00

- updates

This commit is contained in:
makikvues 2021-07-07 12:13:09 +02:00
parent faefb80ec4
commit d9c5406244
2 changed files with 5 additions and 5 deletions

View File

@ -42,8 +42,8 @@ jobs:
run: msbuild $env:Solution_Path
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test $env:Solution_Path
#- name: Execute unit tests
# run: dotnet test $env:Solution_Path
# Build & update all versions
- name: Build all versions
@ -77,7 +77,7 @@ jobs:
- name: Commit results to Github
run: |
git config --local user.email ""
git config --global user.name "CI-winpeas"
git config --global user.name "CI-linpeas-ubuntu"
git commit -m "winpeas binaries auto update" -a --allow-empty
# Git push
@ -85,5 +85,5 @@ jobs:
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
branch: master

View File

@ -12,7 +12,7 @@ namespace winPEAS.Tests
try
{
string[] args = new string[] {
"systeminfo", "networkinfo", "servicesinfo", "processinfo", "applicationsinfo", "browserinfo", "debug"
"systeminfo", "servicesinfo", "processinfo", "applicationsinfo", "browserinfo", "debug"
};
Program.Main(args);
}