Skip to content

Commit ec8e3ff

Browse files
Format
1 parent ed7913c commit ec8e3ff

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

app/src/App/Effect/Source.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ handle importType = case _ of
130130

131131
-- We'll receive this message if we try to clone a repo which doesn't
132132
-- exist, which is interpreted as an attempt to fetch a private repo.
133-
let missingRepoErr = "fatal: could not read Username for 'https://github.com': terminal prompts disabled"
133+
let missingRepoErr = "fatal: could not read Username for 'https://github.com': terminal prompts disabled"
134134

135135
if String.contains (String.Pattern missingRepoErr) (Aff.message error) then
136136
Except.throw $ InaccessibleRepo { owner, repo }

flake.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,12 @@
289289
# according to the env.example file, or to the values explicitly set below
290290
# (e.g. DHALL_PRELUDE and DHALL_TYPES).
291291
defaultEnv = parseEnv ./.env.example // {
292-
inherit DHALL_PRELUDE DHALL_TYPES GIT_LFS_SKIP_SMUDGE GIT_TERMINAL_PROMPT;
292+
inherit
293+
DHALL_PRELUDE
294+
DHALL_TYPES
295+
GIT_LFS_SKIP_SMUDGE
296+
GIT_TERMINAL_PROMPT
297+
;
293298
};
294299

295300
# Parse a .env file, skipping empty lines and comments, into Nix attrset

0 commit comments

Comments
 (0)