mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
[MIRROR] Fixes build script "server" target [MDB IGNORE] (#17629)
* Fixes build script "server" target (#71376) Put the param in wrong place in #71283 * Fixes build script "server" target Co-authored-by: AnturK <AnturK@users.noreply.github.com>
This commit is contained in:
@@ -278,7 +278,8 @@ export const BuildTarget = new Juke.Target({
|
||||
});
|
||||
|
||||
export const ServerTarget = new Juke.Target({
|
||||
dependsOn: [BuildTarget, DmVersionParameter],
|
||||
parameters: [DmVersionParameter, PortParameter],
|
||||
dependsOn: [BuildTarget],
|
||||
executes: async ({ get }) => {
|
||||
const port = get(PortParameter) || '1337';
|
||||
const options = {
|
||||
|
||||
Reference in New Issue
Block a user