diff options
author | teor <teor@torproject.org> | 2019-10-23 13:00:35 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-10-23 13:01:55 +1000 |
commit | 71191fa3dcc29d24aee9a22d1d9f2584316e818f (patch) | |
tree | 837051e013a029338b747bccce32a23449cc9dca /scripts/git | |
parent | d804a81cf1b43fe9382821e79c3ac588c6a9967d (diff) | |
download | tor-71191fa3dcc29d24aee9a22d1d9f2584316e818f.tar.gz tor-71191fa3dcc29d24aee9a22d1d9f2584316e818f.zip |
scripts/git: Fix a variable name typo in git-push-all.sh
Obviously correct changes to already reviewed code.
Diffstat (limited to 'scripts/git')
-rwxr-xr-x | scripts/git/git-push-all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/git/git-push-all.sh b/scripts/git/git-push-all.sh index f848da7841..7e67f4c96d 100755 --- a/scripts/git/git-push-all.sh +++ b/scripts/git/git-push-all.sh @@ -151,7 +151,7 @@ if [ "$TEST_BRANCH_PREFIX" ]; then fi if [ "$TOR_GIT_PUSH_PATH" ]; then - echo "Changing to $GIT_PUSH_PATH before pushing" + echo "Changing to $TOR_GIT_PUSH_PATH before pushing" cd "$TOR_GIT_PUSH_PATH" else echo "Pushing from the current directory" |