We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 307aa4a commit 736feabCopy full SHA for 736feab
packages/server/src/cli.ts
@@ -4,7 +4,6 @@ import { Command, flags } from "@oclif/command";
4
import { fork, ForkOptions, ChildProcess } from "child_process";
5
import { randomFillSync } from "crypto";
6
import * as fs from "fs";
7
-import * as os from "os";
8
import * as path from "path";
9
import * as WebSocket from "ws";
10
import { createApp } from "./server";
@@ -244,5 +243,6 @@ export class Entry extends Command {
244
243
245
Entry.run(undefined, {
246
root: buildDir || __dirname,
+ version: process.env.VERSION || "development",
247
//@ts-ignore
248
}).catch(require("@oclif/errors/handle"));
0 commit comments