diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 09a0e83..fe02e42 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,7 @@ extern crate ilc_cli; use ilc_cli::Cli; static MASTER_HASH: &'static str = include_str!("../.git/refs/heads/master"); +static NOTICE: &'static str = include_str!("../NOTICE"); fn main() { ilc_cli::main(Cli { @@ -12,5 +13,6 @@ fn main() { } else { Some(MASTER_HASH.trim_right().to_owned()) }, + notice: NOTICE, }); } |