Skip to content

Commit 33d13a6

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

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/dfx/assets/prepare_assets.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ fn write_binary_cache(
112112
BufWriter::new(File::create(out_dir.join("binary_cache.tgz")).unwrap()),
113113
Compression::new(6),
114114
));
115-
for (path, bin) in bins.into_iter().chain(
116-
["moc", "mo-doc", "mo-ide"]
117-
.map(|bin| (bin.into(), bin_tars.remove(Path::new(bin)).unwrap())),
118-
) {
115+
for (path, bin) in bins
116+
.into_iter()
117+
.chain(["moc", "mo-doc"].map(|bin| (bin.into(), bin_tars.remove(Path::new(bin)).unwrap())))
118+
{
119119
let mut header = Header::new_gnu();
120120
header.set_size(bin.len() as u64);
121121
header.set_mode(0o500);

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)