[tor-commits] [gettor/master] Fix script
hiro at torproject.org
hiro at torproject.org
Fri Sep 27 19:29:55 UTC 2019
commit efa32fa132e2d4069e0be982b7c723a341867fce
Author: hiro <hiro at torproject.org>
Date: Fri Sep 27 21:29:53 2019 +0200
Fix script
---
scripts/update_files | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/update_files b/scripts/update_files
index a7e5918..0ce81b2 100755
--- a/scripts/update_files
+++ b/scripts/update_files
@@ -40,7 +40,7 @@ for row in $(
wget $r
git add .
git commit -m '[dist ci] commit from CI runner - update with new torbrowser downloads'
- diffs=$(git diff origin releases)
+ diffs=$(git diff origin/releases)
if [ -z "$diffs" ]; then
echo "No new releases"
else
@@ -48,7 +48,7 @@ for row in $(
fi
git checkout torbrowser-releases
git merge releases
- diffs=$(git diff github torbrowser-releases)
+ diffs=$(git diff github/torbrowser-releases)
if [ -z "$diffs" ]; then
echo "No new releases"
else
More information about the tor-commits
mailing list