Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashoneyman committed Aug 26, 2024
1 parent ed7913c commit ec8e3ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/App/Effect/Source.purs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ handle importType = case _ of

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

if String.contains (String.Pattern missingRepoErr) (Aff.message error) then
Except.throw $ InaccessibleRepo { owner, repo }
Expand Down
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,12 @@
# according to the env.example file, or to the values explicitly set below
# (e.g. DHALL_PRELUDE and DHALL_TYPES).
defaultEnv = parseEnv ./.env.example // {
inherit DHALL_PRELUDE DHALL_TYPES GIT_LFS_SKIP_SMUDGE GIT_TERMINAL_PROMPT;
inherit
DHALL_PRELUDE
DHALL_TYPES
GIT_LFS_SKIP_SMUDGE
GIT_TERMINAL_PROMPT
;
};

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

0 comments on commit ec8e3ff

Please sign in to comment.