Skip to content

Commit

Permalink
fix(builders/mkMinecraftServer): worlds not unzipping
Browse files Browse the repository at this point in the history
Should fix #6
  • Loading branch information
IogaMaster committed Aug 14, 2024
1 parent 88b7999 commit 383749e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion builders/mkMinecraftServer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ mkGenericServer {
cd ${serverLocation}
''
+ ''
mcman build -o $out
mkdir server_build
chmod 777 -R server_build
mcman build -o server_build
cp -r server_build $out
'';

startCmd = "./start.sh";
Expand Down

0 comments on commit 383749e

Please sign in to comment.