From 3bd10a0fdf82ad2d60c833400100118f5ae2e394 Mon Sep 17 00:00:00 2001 From: John Luo <johluo@microsoft.com> Date: Wed, 13 Feb 2019 15:01:30 -0800 Subject: [PATCH] Fix repo root in restore.sh (#7521) --- restore.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) mode change 100644 => 100755 restore.sh diff --git a/restore.sh b/restore.sh old mode 100644 new mode 100755 index 0dee0a4a030..9a6d0ac5ce7 --- 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 "$@" -- GitLab