Skip to content

Commit 08dd1cd

Browse files
authored
Fix build.cmd/sh for src/Mvc (#6208)
1 parent 2b7a3a2 commit 08dd1cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Mvc/build.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@ECHO OFF
2-
SET RepoRoot="%~dp0..\.."
3-
%RepoRoot%\build.cmd -All -RepoRoot %~dp0 %*
2+
SET RepoRoot=%~dp0..\..
3+
%RepoRoot%\build.cmd -projects %~dp0\**\*.*proj %*

src/Mvc/build.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -euo pipefail
44

55
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
66
repo_root="$DIR/../.."
7-
"$repo_root/build.sh" -All -RepoRoot "$DIR" "$@"
7+
"$repo_root/build.sh" --projects "$DIR/**/*.*proj" "$@"

0 commit comments

Comments
 (0)