diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-06-06 23:40:13 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-06-06 23:40:13 +0200 |
commit | 977e11ef8d6780b173ad5ca6d13e29e721d0c6a0 (patch) | |
tree | 7860f53af2df06ffd9c9d2164c8736c2e1ce42de /logic | |
parent | 634bdcdbcb5cc7f979416541e5e265228985243a (diff) | |
download | MultiMC-977e11ef8d6780b173ad5ca6d13e29e721d0c6a0.tar MultiMC-977e11ef8d6780b173ad5ca6d13e29e721d0c6a0.tar.gz MultiMC-977e11ef8d6780b173ad5ca6d13e29e721d0c6a0.tar.lz MultiMC-977e11ef8d6780b173ad5ca6d13e29e721d0c6a0.tar.xz MultiMC-977e11ef8d6780b173ad5ca6d13e29e721d0c6a0.zip |
GH-1051 ignore CDPATH
Diffstat (limited to 'logic')
-rw-r--r-- | logic/BaseProcess.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/logic/BaseProcess.cpp b/logic/BaseProcess.cpp index 0403e683..9d429605 100644 --- a/logic/BaseProcess.cpp +++ b/logic/BaseProcess.cpp @@ -64,7 +64,8 @@ void BaseProcess::init() "JRE_HOME", "_JAVA_OPTIONS", "JAVA_OPTIONS", - "JAVA_TOOL_OPTIONS" + "JAVA_TOOL_OPTIONS", + "CDPATH" }; for(auto key: rawenv.keys()) { |