diff options
Diffstat (limited to 'Command/GCryptSetup.hs')
-rw-r--r-- | Command/GCryptSetup.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/GCryptSetup.hs b/Command/GCryptSetup.hs index 2448467fd..ae3dd29bd 100644 --- a/Command/GCryptSetup.hs +++ b/Command/GCryptSetup.hs @@ -30,7 +30,7 @@ start gcryptid = next $ next $ do g <- gitRepo gu <- Remote.GCrypt.getGCryptUUID True g let newgu = genUUIDInNameSpace gCryptNameSpace gcryptid - if gu == Nothing || gu == Just newgu + if isNothing gu || gu == Just newgu then if Git.repoIsLocalBare g then do void $ Remote.GCrypt.setupRepo gcryptid g |