Skip to content

Commit

Permalink
fix: Add wasm to supported debug-files upload formats (#1683)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek authored Jul 13, 2023
1 parent a99e1bf commit e297bb9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/commands/debug_files/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ pub fn execute(matches: &ArgMatches) -> Result<()> {
"sourcebundle" => upload.filter_format(DifFormat::Object(FileFormat::SourceBundle)),
"portablepdb" => upload.filter_format(DifFormat::Object(FileFormat::PortablePdb)),
"jvm" => upload.filter_format(DifFormat::Object(FileFormat::SourceBundle)),
"wasm" => upload.filter_format(DifFormat::Object(FileFormat::Wasm)),
"bcsymbolmap" => {
upload.filter_format(DifFormat::BcSymbolMap);
upload.filter_format(DifFormat::PList)
Expand Down

0 comments on commit e297bb9

Please sign in to comment.