Merge pull request #1278 from matthiasbeyer/imag-init/fix-release-build-include-string-path
imag-init: fix release build include string path
This commit is contained in:
commit
4c95625def
2 changed files with 3 additions and 1 deletions
1
bin/core/imag-init/imagrc.toml
Symbolic link
1
bin/core/imag-init/imagrc.toml
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../imagrc.toml
|
|
@ -45,7 +45,8 @@ use std::path::PathBuf;
|
|||
use std::path::Path;
|
||||
use std::process::Command;
|
||||
|
||||
const CONFIGURATION_STR : &'static str = include_str!("../../../../imagrc.toml");
|
||||
const CONFIGURATION_STR : &'static str = include_str!("../imagrc.toml");
|
||||
|
||||
const GITIGNORE_STR : &'static str = r#"
|
||||
# We ignore the imagrc.toml file by default
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue