1
0
Fork 0

Fix typo in error message

This commit is contained in:
AkiyukiOkayasu 2023-01-25 17:51:57 +09:00 committed by Robbert van der Helm
parent 4710158f07
commit 8984b3a080

View file

@ -334,7 +334,7 @@ fn bundle_binary(
fs::create_dir_all(standalone_binary_path.parent().unwrap()) fs::create_dir_all(standalone_binary_path.parent().unwrap())
.context("Could not create standalone bundle directory")?; .context("Could not create standalone bundle directory")?;
util::reflink_or_combine(bin_paths, &standalone_binary_path, compilation_target) util::reflink_or_combine(bin_paths, &standalone_binary_path, compilation_target)
.context("Could not create standaloen bundle")?; .context("Could not create standalone bundle")?;
// FIXME: The reflink crate seems to sometime strip away the executable bit, so we need to help // FIXME: The reflink crate seems to sometime strip away the executable bit, so we need to help
// it a little here // it a little here