Browse Source

Fix repo root in restore.sh (#7521)

John Luo 7 years ago
parent
commit
3bd10a0fdf
1 changed files with 1 additions and 2 deletions
  1. 1 2
      restore.sh

+ 1 - 2
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 "$@"