Created
March 26, 2009 11:42
-
-
Save heipei/86032 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e80b6396341327fa74208c9c482a7a4c84f113fc Mon Sep 17 00:00:00 2001 | |
From: Johannes Gilger <[email protected]> | |
Date: Thu, 26 Mar 2009 10:21:56 +0100 | |
Subject: [PATCH] GitX: CFBuildVersion as x.x.x.xx | |
We used the whole output of git describe before, not realizing that | |
neither MacOS nor Sparkle are ok with alphabetic characters but instead | |
want monotonically increasing integers. So now we just take the major | |
version number appended with the number of commits since the last tag. | |
Signed-off-by: Johannes Gilger <[email protected]> | |
--- | |
GitX.xcodeproj/project.pbxproj | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/GitX.xcodeproj/project.pbxproj b/GitX.xcodeproj/project.pbxproj | |
index 9c13201..000fb40 100644 | |
--- a/GitX.xcodeproj/project.pbxproj | |
+++ b/GitX.xcodeproj/project.pbxproj | |
@@ -757,7 +757,7 @@ | |
); | |
runOnlyForDeploymentPostprocessing = 0; | |
shellPath = /bin/sh; | |
- shellScript = "export PATH=$PATH:$HOME/bin:$HOME/local/bin:/sw/bin:/opt/local/bin:`$TARGET_BUILD_DIR/gitx --git-path`\n(echo -n \"#define BUILD_NUMBER \"; git describe) > build/revision\ntouch Info.plist"; | |
+ shellScript = "export PATH=$PATH:$HOME/bin:$HOME/local/bin:/sw/bin:/opt/local/bin:`$TARGET_BUILD_DIR/gitx --git-path`\n(echo -n \"#define BUILD_NUMBER \"; git describe|sed -e \"s/\\-/\\./\" -e \"s/v//\" -e \"s/-.*//\") > build/revision\ntouch Info.plist"; | |
}; | |
F5792DFB0EDB570C001B0C31 /* Compile libgit2 */ = { | |
isa = PBXShellScriptBuildPhase; | |
-- | |
1.6.1.1.g764e+GitX |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment