mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 13:14:59 -07:00
Add RPROMPT to blacklist
This commit is contained in:
+3
-3
@@ -246,9 +246,6 @@ gb_internal bool try_cached_build(Checker *c, Array<String> const &args) {
|
||||
if (string_starts_with(str, str_lit("CURR_DATE_TIME="))) {
|
||||
continue;
|
||||
}
|
||||
if (string_starts_with(str, str_lit("PROMPT="))) {
|
||||
continue;
|
||||
}
|
||||
array_add(&envs, str);
|
||||
}
|
||||
#else
|
||||
@@ -258,6 +255,9 @@ gb_internal bool try_cached_build(Checker *c, Array<String> const &args) {
|
||||
if (string_starts_with(str, str_lit("PROMPT="))) {
|
||||
continue;
|
||||
}
|
||||
if (string_starts_with(str, str_lit("RPROMPT="))) {
|
||||
continue;
|
||||
}
|
||||
array_add(&envs, str);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user