diff --git a/system/git.nix b/system/git.nix index 1f482c96..ed2d801a 100644 --- a/system/git.nix +++ b/system/git.nix @@ -31,7 +31,7 @@ let whenJust deployMay $ \deploy -> do (maybe [] (\x -> ["-A", x]) -> target) <- lookupEnv "GL_OPTION_WEB_DEPLOY_NIX_TARGET" (decodeUtf8 -> path) <- pwd |> captureTrim - say [i|Deploying build to /var/www/#{deploy}|] + say [i|Building default.nix #{show target} to /var/www/#{deploy}|] bracket (checkout path) (rm "-rf") $ \repoDir -> withCurrentDirectory repoDir $ nix_build "-o" ([i|/var/www/#{deploy}|] :: String) target say "Done" testFlag <- lookupEnv "GL_OPTION_TEST"