From 9682460a56f8615bbc90b2e06317d5d9e769ee08 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Thu, 31 May 2012 12:21:43 +0100 Subject: [PATCH] Fixed path to version file. --- AMBuildScript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AMBuildScript b/AMBuildScript index baf532e..3cc6f38 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -148,7 +148,7 @@ class SM: # For OS X dylib versioning import re - productFile = open(os.path.join(AMBuild.sourceFolder, 'product.version'), 'r') + productFile = open(os.path.join(AMBuild.sourceFolder, 'buildbot', 'product.version'), 'r') productContents = productFile.read() productFile.close() m = re.match('(\d+)\.(\d+)\.(\d+).*', productContents)