From 320c60a0e47a6985ce7cd5e541be0949be6fbc35 Mon Sep 17 00:00:00 2001 From: Jermeiah S Date: Sat, 21 Jun 2025 09:29:43 -0400 Subject: [PATCH] fix: package name was set incorrectly --- .gitignore | 1 + package.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c1e761c..051491d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ latest_version.txt +result diff --git a/package.nix b/package.nix index a792b35..35101b1 100644 --- a/package.nix +++ b/package.nix @@ -2,7 +2,7 @@ # This is the wrapping around mkderivation that abstracts away the standard boilerplate logic for building go packages. buildGoModule { # The final built binary name. - pname = "go-hello"; + pname = "reforgerds-updater"; # The binary version | NEEDS TO BE IN STEP WITH GO MOD. version = "v1.0.0"; # In 'nix develop', we don't need a copy of the source tree