Skip to content

Commit

Permalink
Update binary naming
Browse files Browse the repository at this point in the history
Update the copy command in package.nix to match Redot release binaries.
  • Loading branch information
theoparis committed Dec 5, 2024
1 parent 4182cb5 commit bfafb16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@
pkgs,
}:
{
default =
pkgs.callPackage ./package.nix
{
};
default = pkgs.callPackage ./package.nix {
};
}
);
devShells = forEachSupportedSystem (
Expand Down
2 changes: 1 addition & 1 deletion package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ stdenv.mkDerivation {
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
cp bin/godot.* $out/bin/redot
cp bin/Redot*.* $out/bin/redot
runHook postInstall
'';
Expand Down

0 comments on commit bfafb16

Please sign in to comment.