gnucash-htdocs master: Fix bad tarball path in source download.

John Ralls jralls at code.gnucash.org
Mon Dec 19 12:43:20 EST 2016


Updated	 via  https://github.com/Gnucash/gnucash-htdocs/commit/1403b09c (commit)
	from  https://github.com/Gnucash/gnucash-htdocs/commit/76f95503 (commit)



commit 1403b09c88f57fd7746fa458dba152737cc43a78
Author: John Ralls <jralls at ceridwen.us>
Date:   Mon Dec 19 09:41:19 2016 -0800

    Fix bad tarball path in source download.

diff --git a/externals/global_params.php b/externals/global_params.php
index 2cdc08b..15bb190 100644
--- a/externals/global_params.php
+++ b/externals/global_params.php
@@ -9,7 +9,9 @@
 #     $latest_stable_win         = $latest_stable."-1";
      $latest_stable_mac_ppc     = $latest_stable."-1";
      $latest_stable_mac_intel   = $latest_stable."-1";
-     $tarball                   = $latest_stable."b";
+// Change this when there has been a re-tag to add the re-tag letter,
+// e.g. if one retagged 2.6.13 to 2.6.13a, make $tarball = $latest_stable."a".
+     $tarball                   = $latest_stable;
      
 #     $major_latest_unstable		="2.5";
 #     $minor_latest_unstable		="10"; 
@@ -37,7 +39,7 @@
      $latest_stable_win="gnucash-".$latest_stable_win."-setup.exe";
      $latest_stable_mac_intel="Gnucash-Intel-".$latest_stable_mac_intel.".dmg";
      $latest_stable_mac_ppc="Gnucash-PPC-".$latest_stable_mac_ppc.".dmg";
-     $latest_stable_source="gnucash-".tarball.".tar.bz2";
+     $latest_stable_source="gnucash-".$tarball.".tar.bz2";
 
      $old_stable_path=$stable_path.$old_stable."/";
      



Summary of changes:
 externals/global_params.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list