Merge branch 'sigar-1.6'

This commit is contained in:
Doug MacEachern 2010-04-04 10:26:06 -07:00
commit cf22b7f0a1
1 changed files with 12 additions and 2 deletions

View File

@ -177,8 +177,18 @@ public class ArchNameTask extends Task {
String head = readLine(git + "/HEAD");
if (head != null) {
String ref = head.substring(5).trim(); //'ref: '
return readLine(git + "/" + ref).substring(0, 7);
String sha1;
final String refp = "ref: ";
if (head.startsWith(refp)) {
//branch
String ref = head.substring(refp.length()).trim();
sha1 = readLine(git + "/" + ref);
}
else {
//git checkout -f origin/branch-name (no branch)
sha1 = head;
}
return sha1.substring(0, 7);
}
}
return null;