Skip to content

Commit

Permalink
chore(core): fix TS build
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Jul 20, 2018
1 parent e55a9d5 commit b9ea8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/core/src/api/start.ts
Expand Up @@ -106,7 +106,7 @@ export default async ({
let spawned!: ChildProcess;

await asyncOra('Launching Application', async () => {
spawned = spawn(electronExecPath, prefixArgs.concat([appPath]).concat(args as string[]), spawnOpts);
spawned = spawn(electronExecPath!, prefixArgs.concat([appPath]).concat(args as string[]), spawnOpts);
});

await runHook(forgeConfig, 'postStart', spawned);
Expand Down

0 comments on commit b9ea8bd

Please sign in to comment.