Skip to content

Commit

Permalink
CLI: fix nix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohalt authored Jan 25, 2024
1 parent 8604d0a commit b2ddeb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
system: {
garden = {
type = "app";
program = "${self.packages.system.garden}/bin/garden";
program = "${self.packages.${system}.garden}/bin/garden";
};
}
);
Expand Down
2 changes: 1 addition & 1 deletion nix/garden.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
}:
writeShellScriptBin "garden"
''
exec ${babashka}/bin/bb --config ${../bb.edn} --deps-root ${../.} -Dnextjournal.garden.rev=${rev} -m nextjournal.garden-cli -- $@
exec ${babashka}/bin/bb -Sforce --config ${../bb.edn} --deps-root ${../.} -Dnextjournal.garden.rev=${rev} -m nextjournal.garden-cli -- $@
''

0 comments on commit b2ddeb3

Please sign in to comment.