From ec8e3ff0d8bf79c7372278b9a5be916620d92b69 Mon Sep 17 00:00:00 2001 From: Thomas Honeyman Date: Mon, 26 Aug 2024 18:47:08 -0400 Subject: [PATCH] Format --- app/src/App/Effect/Source.purs | 2 +- flake.nix | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) 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