[tor-commits] [tor-browser-build/maint-8.0] Bug 28002: fix the precomplete file in the en-US installer

gk at torproject.org gk at torproject.org
Wed Dec 5 19:15:14 UTC 2018


commit 5c41fd90b0badbb79e37441bfd7a2a19ff42d0ca
Author: Nicolas Vigier <boklm at torproject.org>
Date:   Thu Oct 11 12:30:18 2018 +0200

    Bug 28002: fix the precomplete file in the en-US installer
    
    The Windows installer for the en-US bundle was created from the
    $TB_STAGE_DIR instead of the $PKG_DIR where the precomplete file has
    been regenerated.
---
 projects/tor-browser/build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/tor-browser/build b/projects/tor-browser/build
index 68050f9..1dc4188 100644
--- a/projects/tor-browser/build
+++ b/projects/tor-browser/build
@@ -292,8 +292,8 @@ cd $distdir
         dmg_out => '$OUTDIR/TorBrowser-' _ c("var/torbrowser_version") _ '-osx64_${PKG_LOCALE}.dmg',
     }) %]
 [% ELSIF c("var/windows") %]
-  find "${TB_STAGE_DIR}" -exec [% c("var/touch") %] {} \;
-  pushd "${TB_STAGE_DIR}"
+  find "$PKG_DIR" -exec [% c("var/touch") %] {} \;
+  pushd "$PKG_DIR"
   makensis torbrowser.nsi
   # Working around NSIS braindamage
   mv torbrowser-install.exe torbrowser-install-tmp.exe



More information about the tor-commits mailing list