@@ -86,11 +86,6 @@ func main() {
8686 Usage : "use path style for bucket paths" ,
8787 EnvVar : "PLUGIN_PATH_STYLE" ,
8888 },
89- cli.BoolTFlag {
90- Name : "yaml-verified" ,
91- Usage : "Ensure the yaml was signed" ,
92- EnvVar : "DRONE_YAML_VERIFIED" ,
93- },
9489 cli.StringFlag {
9590 Name : "env-file" ,
9691 Usage : "source env file" ,
@@ -108,20 +103,19 @@ func run(c *cli.Context) error {
108103 }
109104
110105 plugin := Plugin {
111- Endpoint : c .String ("endpoint" ),
112- Key : c .String ("access-key" ),
113- Secret : c .String ("secret-key" ),
114- Bucket : c .String ("bucket" ),
115- Region : c .String ("region" ),
116- Access : c .String ("acl" ),
117- Source : c .String ("source" ),
118- Target : c .String ("target" ),
119- StripPrefix : c .String ("strip-prefix" ),
120- Exclude : c .StringSlice ("exclude" ),
121- Encryption : c .String ("encryption" ),
122- PathStyle : c .Bool ("path-style" ),
123- DryRun : c .Bool ("dry-run" ),
124- YamlVerified : c .BoolT ("yaml-verified" ),
106+ Endpoint : c .String ("endpoint" ),
107+ Key : c .String ("access-key" ),
108+ Secret : c .String ("secret-key" ),
109+ Bucket : c .String ("bucket" ),
110+ Region : c .String ("region" ),
111+ Access : c .String ("acl" ),
112+ Source : c .String ("source" ),
113+ Target : c .String ("target" ),
114+ StripPrefix : c .String ("strip-prefix" ),
115+ Exclude : c .StringSlice ("exclude" ),
116+ Encryption : c .String ("encryption" ),
117+ PathStyle : c .Bool ("path-style" ),
118+ DryRun : c .Bool ("dry-run" ),
125119 }
126120
127121 return plugin .Exec ()
0 commit comments