From c41536b0321db47e3db8eba72389ce22045e10b8 Mon Sep 17 00:00:00 2001 From: Patrick Bollinger Date: Sat, 26 Oct 2024 07:00:52 -0400 Subject: [PATCH 1/2] Replace `gren install` with `gren package install` in import error message I discovered this issue while working on a detailed tutorial that uses the errors to drive development. --- compiler/src/Reporting/Error/Import.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/Reporting/Error/Import.hs b/compiler/src/Reporting/Error/Import.hs index 44ac47fdb..adcf3d8e3 100644 --- a/compiler/src/Reporting/Error/Import.hs +++ b/compiler/src/Reporting/Error/Import.hs @@ -72,7 +72,7 @@ toReport source (Error region name unimportedModules problem) = D.fromChars (Pkg.toChars dependency), "package?", "Running", - D.green (D.fromChars ("gren install " ++ Pkg.toChars dependency)), + D.green (D.fromChars ("gren package install " ++ Pkg.toChars dependency)), "should", "make", "it", From 3e899d7f0c00c5b868d6329e8dbaac980f549136 Mon Sep 17 00:00:00 2001 From: Patrick Bollinger Date: Mon, 28 Oct 2024 08:26:39 -0400 Subject: [PATCH 2/2] Add myself to CONTRIBUTORS --- CONTRIBUTORS | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 61be5a8b7..abf9498c4 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -7,3 +7,4 @@ Gaute Berge (gauteab) Dimitri B. (BendingBender) pushfoo mbartlett21 +Patrick Bollinger (pjbollinger)