mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-03 23:26:29 +00:00
Fix spellcheck in purge log (#4491)
This commit is contained in:
parent
57e7572b6f
commit
bb1461d5d8
1 changed files with 2 additions and 1 deletions
|
@ -113,7 +113,8 @@ func pipelinePurge(c *cli.Command, client woodpecker.Client) (err error) {
|
|||
}
|
||||
|
||||
for i, p := range pipelinesToPurge {
|
||||
log.Debug().Msgf("%sprune %v/%v pipelines from repo '%v'", msgPrefix, i+1, len(pipelinesToPurge), repoIDOrFullName)
|
||||
// cspell:words spurge
|
||||
log.Debug().Msgf("%spurge %v/%v pipelines from repo '%v'", msgPrefix, i+1, len(pipelinesToPurge), repoIDOrFullName)
|
||||
if dryRun {
|
||||
continue
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue