-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1287 from alphagov/fix-version-header
Fix release SHA in footer
- Loading branch information
Showing
2 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
if Rails.root.join("REVISION").exist? | ||
revision = File.read(Rails.root.join("REVISION")).chomp | ||
CURRENT_RELEASE_SHA = revision[0..10] # Just get the short SHA | ||
else | ||
CURRENT_RELEASE_SHA = "development".freeze | ||
end | ||
CURRENT_RELEASE_SHA = `git rev-parse HEAD`.chomp[0..10] # Just get the short SHA |