corrected name of ATTACH_SYMBOL env var
This commit is contained in:
parent
b3403ffa36
commit
d8aaf7feed
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ use std::env::var;
|
|||
|
||||
pub type EnvVar = (&'static str, &'static str);
|
||||
|
||||
pub static ATTACH_SYMBOL: EnvVar = ("ATTACH_SYMBOL", "*");
|
||||
pub static ATTACH_SYMBOL: EnvVar = ("REMUX_ATTACH_SYMBOL", "*");
|
||||
|
||||
pub fn env_var(envvar: EnvVar) -> String {
|
||||
var(envvar.0).unwrap_or(envvar.1.to_string())
|
||||
|
|
Loading…
Reference in a new issue