Skip to content

Commit 374a26d

Browse files
authored
Merge pull request #70 from github/fix-incorrect-log-message
Fix an incorrect log message.
2 parents 097405a + bd51e34 commit 374a26d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/push/push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ func (pushService *pushService) pushReleases() error {
350350
}
351351
for index, releasePathStat := range releasePathStats {
352352
releaseName := releasePathStat.Name()
353-
log.Debugf("Pulling CodeQL bundle %s (%d/%d)...", releaseName, index+1, len(releasePathStats))
353+
log.Debugf("Pushing CodeQL bundle %s (%d/%d)...", releaseName, index+1, len(releasePathStats))
354354
release, err := pushService.createOrUpdateRelease(releaseName)
355355
if err != nil {
356356
return err

0 commit comments

Comments
 (0)