Skip to content

Commit

Permalink
Merge pull request #1071 from jmholla/patch-1
Browse files Browse the repository at this point in the history
Thanks!
  • Loading branch information
ryantrinkle authored Mar 25, 2024
2 parents 9f374e2 + 1faee79 commit 20ab7e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This project's release branch is `master`. This log is written from the perspect
## Unreleased

* Obelisk.Route: add pathQueryEncoder and generalizeIdentity
* [#1071](https://github.com/obsidiansystems/obelisk/pull/1071): Support deployment information repository sub-directories

## v1.3.0.0
* [#1047](https://github.com/obsidiansystems/obelisk/pull/1047): Update default ios sdk to 15
Expand Down
2 changes: 1 addition & 1 deletion lib/command/src/Obelisk/Command/Utils.hs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ getGitHash
-> m GitHash
getGitHash repo pathWithinRepo = do
let git = readProcessAndLogOutput (Debug, Debug) . gitProc repo
GitHash <$> git ["rev-parse", "HEAD:" <> pathWithinRepo]
GitHash <$> git ["rev-parse", "HEAD:./" <> pathWithinRepo]


type CommitId = Text
Expand Down

0 comments on commit 20ab7e0

Please sign in to comment.