Skip to content
/ titan Public
forked from titan-data/titan

Commit

Permalink
Fixes #58
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Smart <[email protected]>
  • Loading branch information
Derek Smart committed Oct 10, 2019
1 parent 81c4de7 commit 6ed0dfe
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 6ed0dfe

Please sign in to comment.