Skip to content

Commit f34eab3

Browse files
committed
corrected regenerate scripts
1 parent 8d02640 commit f34eab3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Tools/regenerate-ci.cmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@echo off
22

3-
dotnet run -c Release --project %~dp0\CI\NGO.Cookbook.csproj %*
3+
cd /d "%~dp0.."
4+
dotnet run --project "Tools\CI\NGO.Cookbook.csproj" %*
45
if %errorlevel% neq 0 exit /b %errorlevel%

Tools/regenerate-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -e # fail on first error
44

55
SCRIPT_DIR=$(dirname "$0")
6-
dotnet run -c Release --project $SCRIPT_DIR/CI/NGO.Cookbook.csproj "$@"
6+
dotnet run --project $SCRIPT_DIR/CI/NGO.Cookbook.csproj "$@"

0 commit comments

Comments
 (0)