Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Luo <johluo@microsoft.com>2019-02-14 02:01:30 +0300
committerGitHub <noreply@github.com>2019-02-14 02:01:30 +0300
commit3bd10a0fdf82ad2d60c833400100118f5ae2e394 (patch)
treef4bf79d5821eaa3373ba05b7f7fe24b72baf93d7 /restore.sh
parent338de4710a6f5d3355dfb113bb5aaedb737ba082 (diff)
Fix repo root in restore.sh (#7521)
Diffstat (limited to 'restore.sh')
-rwxr-xr-x[-rw-r--r--]restore.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/restore.sh b/restore.sh
index 0dee0a4a03..9a6d0ac5ce 100644..100755
--- a/restore.sh
+++ b/restore.sh
@@ -3,5 +3,4 @@
set -euo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-repo_root="$DIR/../.."
-"$repo_root/build.sh" --all --restore --no-build "$@"
+"$DIR/build.sh" --all --restore --no-build "$@"