Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,10 @@ jobs:
dart pub get
cd ..
dart run tools/generate.dart
tree -a -L 2 server/server-build
- name: Copy core pack
run: |
cp packs/core.stnx server-build/packs/
tree -a -L 2 server-build
- name: Archive
uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Add action buttons support
* Add welcome text to server
* Fix home page header text color in certain themes
* Fix released server archives have no core pack
* Rebuild event system

Read more here: https://linwood.dev/setonix/0.6.0
3 changes: 2 additions & 1 deletion server/lib/src/asset.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ class ServerAssetManager extends AssetManager {
final directory = Directory('packs');
if (!await directory.exists()) {
await directory.create();
print(
console.print(
'WARNING: No packs directory found. Please add packs to the server.',
level: LogLevel.warning,
);
}
await for (final file in directory.list()) {
Expand Down