mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
fix: drop -- when calling dokku run for cron-tab templating
Closes #6541
This commit is contained in:
committed by
GitHub
parent
2e66cee50f
commit
8ffb693105
@@ -51,7 +51,7 @@ func (t TemplateCommand) CronCommand() string {
|
||||
return t.AltCommand
|
||||
}
|
||||
|
||||
return fmt.Sprintf("dokku run --cron-id %s %s -- %s", t.ID, t.App, t.Command)
|
||||
return fmt.Sprintf("dokku run --cron-id %s %s %s", t.ID, t.App, t.Command)
|
||||
}
|
||||
|
||||
// FetchCronEntries returns a list of cron commands for a given app
|
||||
|
||||
Reference in New Issue
Block a user