Make ext. tool build scripts pass args through to dotnet

This commit is contained in:
YoshiRulz 2023-02-08 23:26:18 +10:00
parent b14a741ffe
commit 5bdbe110e9
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
dotnet build -c Debug -m
dotnet build -c Debug -m "$@"

View File

@ -1,2 +1,2 @@
#!/bin/sh
dotnet build -c Release -m
dotnet build -c Release -m "$@"