File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
metadata/en-US/changelogs Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -596,7 +596,10 @@ jobs:
596596 dart pub get
597597 cd ..
598598 dart run tools/generate.dart
599- tree -a -L 2 server/server-build
599+ - name : Copy core pack
600+ run : |
601+ cp packs/core.stnx server-build/packs/
602+ tree -a -L 2 server-build
600603 - name : Archive
601604 uses : actions/upload-artifact@v4
602605 with :
Original file line number Diff line number Diff line change 55* Add action buttons support
66* Add welcome text to server
77* Fix home page header text color in certain themes
8+ * Fix released server archives have no core pack
89* Rebuild event system
910
1011Read more here: https://linwood.dev/setonix/0.6.0
Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ class ServerAssetManager extends AssetManager {
2929 final directory = Directory ('packs' );
3030 if (! await directory.exists ()) {
3131 await directory.create ();
32- print (
32+ console. print (
3333 'WARNING: No packs directory found. Please add packs to the server.' ,
34+ level: LogLevel .warning,
3435 );
3536 }
3637 await for (final file in directory.list ()) {
You can’t perform that action at this time.
0 commit comments