Fix build.cmd/sh for src/Mvc (#6208)

This commit is contained in:
Nate McMaster 2018-12-31 15:51:13 -08:00 committed by GitHub
parent 2b7a3a222a
commit 08dd1cd0ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
@ECHO OFF
SET RepoRoot="%~dp0..\.."
%RepoRoot%\build.cmd -All -RepoRoot %~dp0 %*
SET RepoRoot=%~dp0..\..
%RepoRoot%\build.cmd -projects %~dp0\**\*.*proj %*

2
src/Mvc/build.sh Normal file → Executable file
View File

@ -4,4 +4,4 @@ set -euo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
repo_root="$DIR/../.."
"$repo_root/build.sh" -All -RepoRoot "$DIR" "$@"
"$repo_root/build.sh" --projects "$DIR/**/*.*proj" "$@"