The resource.msnl file is now placed in the correct output directory.
This commit is contained in:
parent
1f6ade85fa
commit
fbcc43b2eb
@ -8,6 +8,7 @@ repository = "https://gitlab.com/CyberMages/mason.git"
|
||||
documentation = ""
|
||||
keywords = ["mason", "build"]
|
||||
|
||||
|
||||
[dependencies.scribe]
|
||||
git = "https://gitlab.com/CyberMages/scribe.git"
|
||||
|
||||
|
@ -482,6 +482,7 @@ impl Processor
|
||||
///
|
||||
fn create_loader_manifest(&self)
|
||||
{
|
||||
let mut loader_filename: PathBuf;
|
||||
let mut loader: Loader;
|
||||
|
||||
// Create a new Loader.
|
||||
@ -496,7 +497,9 @@ impl Processor
|
||||
}
|
||||
|
||||
// Create the file to write to.
|
||||
match ::std::fs::File::create(DEFAULT_LOADER_FILENAME)
|
||||
loader_filename = self.output_dir.clone();
|
||||
loader_filename.push(DEFAULT_LOADER_FILENAME);
|
||||
match ::std::fs::File::create(loader_filename.as_path())
|
||||
{
|
||||
Ok(file) =>
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user