diff options
Diffstat (limited to '')
-rw-r--r-- | app/SetEnv.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SetEnv.hs b/app/SetEnv.hs index 258bc2e..e77b05a 100644 --- a/app/SetEnv.hs +++ b/app/SetEnv.hs @@ -66,7 +66,7 @@ setEnv options = runExceptT doSetEnv >>= either ioError return doSetEnv = do expanded <- WindowsEnv.expand varValue - let expandable = expanded == varValue + let expandable = expanded /= varValue let newValue = WindowsEnv.Value expandable varValue promptAndEngrave newValue |