File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ impl Context {
126
126
client. useragent ( "rust-lang/promote-release" ) ?;
127
127
128
128
let content: Content = client. without_body ( ) . send_with_response ( ) ?;
129
- let decoded_content = base64:: decode ( & content. content . replace ( '\n' , "" ) ) ?;
129
+ let decoded_content = base64:: decode ( content. content . replace ( '\n' , "" ) ) ?;
130
130
let cargo_toml = String :: from_utf8 ( decoded_content) ?;
131
131
132
132
let toml: CargoToml = toml:: from_str ( & cargo_toml) ?;
@@ -149,7 +149,7 @@ impl Context {
149
149
. arg ( "cp" )
150
150
. arg ( "--recursive" )
151
151
. arg ( "--only-show-errors" )
152
- . arg ( & self . s3_artifacts_url ( & download_path) )
152
+ . arg ( self . s3_artifacts_url ( & download_path) )
153
153
. arg ( format ! ( "{}/" , dl. display( ) ) ) ) ?;
154
154
155
155
Ok ( dl)
You can’t perform that action at this time.
0 commit comments