diff options
Diffstat (limited to '')
-rw-r--r-- | apps/SetEnv.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/SetEnv.hs b/apps/SetEnv.hs index 0c8df32..aa8c583 100644 --- a/apps/SetEnv.hs +++ b/apps/SetEnv.hs @@ -64,8 +64,8 @@ setEnv options = runExceptT doSetEnv >>= either ioError return skipPrompt = optYes options promptAnd | skipPrompt = withoutPrompt - | otherwise = withPrompt $ engraveMessage profile varName "" varValue + | otherwise = withPrompt $ newMessage profile varName varValue - engrave = Env.engrave profile varName varValue + engrave = Env.engraveForce profile varName varValue doSetEnv = void $ promptAnd engrave |