From 3e7ccb8ade02780e704c2fa969ebfe256d26258e Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Fri, 14 Mar 2008 17:42:02 -0400 Subject: .buildstamp no longer contains productPath, so change the default (#437509). --- product.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'product.py') diff --git a/product.py b/product.py index 1ebd6ebf9..52a8a246f 100644 --- a/product.py +++ b/product.py @@ -28,11 +28,11 @@ elif os.environ.has_key("PRODBUILDPATH") and \ path = os.environ["PRODBUILDPATH"] else: path = None - + productStamp = "" productName = "anaconda" productVersion = "bluesky" -productPath = "anaconda" +productPath = "Packages" productArch = None bugUrl = "your distribution provided bug reporting tool." @@ -46,8 +46,6 @@ if path is not None: productName = lines[1][:-1] productVersion = lines[2][:-1] if len(lines) >= 4: - productPath = lines[3][:-1] - if len(lines) >= 5: bugUrl = lines[4][:-1] if os.environ.has_key("ANACONDA_PRODUCTNAME"): -- cgit