Skip to content

Commit ff7b509

Browse files
remove mo-ide from the expected assets
1 parent 900e5b1 commit ff7b509

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/dfx/assets/prepare_assets.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ fn write_binary_cache(
113113
Compression::new(6),
114114
));
115115
for (path, bin) in bins.into_iter().chain(
116-
["moc", "mo-doc", "mo-ide"]
116+
["moc", "mo-doc"]
117117
.map(|bin| (bin.into(), bin_tars.remove(Path::new(bin)).unwrap())),
118118
) {
119119
let mut header = Header::new_gnu();

src/dfx/src/lib/package_arguments.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ use fn_error_context::context;
66
use std::path::Path;
77
use std::process::Command;
88

9-
/// Package arguments for moc or mo-ide as returned by
10-
/// a package tool like https://github.com/kritzcreek/vessel
11-
/// or, if there is no package tool, the base library.
9+
/// Package arguments for moc as returned by a package tool like
10+
/// https://github.com/kritzcreek/vessel or, if there is no package
11+
/// tool, the base library.
1212
pub type PackageArguments = Vec<String>;
1313

1414
#[context("Failed to load package arguments.")]

0 commit comments

Comments
 (0)