Skip to content

Commit

Permalink
Fix for missing baseSha (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbro112 authored Sep 7, 2023
1 parent 7e567ef commit 7a409d9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ abstract class BaseUploadTask : DefaultTask() {
val uploadRequestData = EmergeUploadRequestData(
apiToken = apiToken.get(),
filename = file.name,
sha = sha.get(),
baseSha = baseSha.get(),
branch = branchName.get(),
sha = sha.orNull,
baseSha = baseSha.orNull,
branch = branchName.orNull,
repoName = repoName,
prNumber = prNumber.orNull,
buildType = buildType.orNull,
Expand Down

0 comments on commit 7a409d9

Please sign in to comment.