We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a8d6e3 commit b6e4fafCopy full SHA for b6e4faf
bin.js
@@ -151,7 +151,7 @@ async function simulator () {
151
if (argv._.length === 1) throw new Error('Must provide a script for the simulator to run.')
152
const scriptPath = p.resolve(argv._[1])
153
const simulatorId = await getUnusedSocket()
154
- process.env.HYPERSPACE_HOST = simulatorId
+ process.env.HYPERSPACE_SOCKET = simulatorId
155
156
const server = createServer(ram, {
157
...argv,
@@ -164,7 +164,7 @@ async function simulator () {
164
165
const child = spawn(process.execPath, [scriptPath], {
166
env: {
167
- HYPERSPACE_HOST: simulatorId
+ HYPERSPACE_SOCKET: simulatorId
168
},
169
stdio: 'inherit'
170
})
0 commit comments