diff --git a/app/src/App/Effect/Source.purs b/app/src/App/Effect/Source.purs index 5f5fd328..82875979 100644 --- a/app/src/App/Effect/Source.purs +++ b/app/src/App/Effect/Source.purs @@ -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 } diff --git a/flake.nix b/flake.nix index 44f2c753..191561aa 100644 --- a/flake.nix +++ b/flake.nix @@ -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