We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2af2c24 commit 8d09cffCopy full SHA for 8d09cff
app/Main.hs
@@ -93,7 +93,8 @@ ensureKeys keysDir = do
93
case mKeys of
94
Just _keys -> do
95
echo "Using keys from environment"
96
- bash_ "echo \"$KEYS\" | base64 -d | tar xz" []
+ mkdir keysDir
97
+ bash_ ("echo \"$KEYS\" | base64 -d | tar xvz -C " <> keysDir) []
98
Nothing -> do
99
echo $ "Creating new repository keys in " <> toTextIgnore keysDir
100
liftIO $ createKeys keysDir
0 commit comments