Skip to content

Commit

Permalink
titan commit IDs should be easier to copy and paste (#62)
Browse files Browse the repository at this point in the history
Fixes #58
  • Loading branch information
Derek Smart authored and Eric Schrock committed Oct 10, 2019
1 parent 9ce14e3 commit f739c9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Commit (
private val email: String,
private val repositoriesApi: RepositoriesApi = RepositoriesApi(),
private val commitsApi: CommitsApi = CommitsApi(),
private val uuid: String = UUID.randomUUID().toString()
private val uuid: String = UUID.randomUUID().toString().replace("-","")
) {
fun commit(container: String, message: String) {
val repoMetadata = repositoriesApi.getRepository(container).properties
Expand Down

0 comments on commit f739c9b

Please sign in to comment.