chore: remove unused flag remote.url

This commit is contained in:
Robert Kaussow 2022-06-02 21:51:35 +02:00
parent 29243448f0
commit f2b247463c
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 2 additions and 15 deletions

View File

@ -5,11 +5,6 @@ properties:
type: bool
required: false
drone_remote_url:
description: The git remote url.
type: string
required: false
mirror:
description: Use a registry mirror to pull images.
type: string
@ -146,7 +141,7 @@ properties:
required: false
compress:
description: Enable compression og the build context using gzip.
description: Enable compression of the build context using gzip.
defaultValue: false
type: bool
required: false

View File

@ -15,13 +15,6 @@ func settingsFlags(settings *plugin.Settings, category string) []cli.Flag {
Destination: &settings.Dryrun,
Category: category,
},
&cli.StringFlag{
Name: "remote.url",
EnvVars: []string{"DRONE_REMOTE_URL"},
Usage: "git remote url",
Destination: &settings.Build.Remote,
Category: category,
},
&cli.StringFlag{
Name: "daemon.mirror",
EnvVars: []string{"PLUGIN_MIRROR", "DOCKER_PLUGIN_MIRROR"},
@ -198,7 +191,7 @@ func settingsFlags(settings *plugin.Settings, category string) []cli.Flag {
&cli.BoolFlag{
Name: "compress",
EnvVars: []string{"PLUGIN_COMPRESS"},
Usage: "enable compression og the build context using gzip",
Usage: "enable compression of the build context using gzip",
Value: false,
Destination: &settings.Build.Compress,
Category: category,

View File

@ -40,7 +40,6 @@ type Login struct {
// Build defines Docker build parameters.
type Build struct {
Remote string // Git remote URL
Name string // Git commit sha used as docker default named tag
Ref string // Git commit ref
Branch string // Git repository branch