Skip to content

Commit

Permalink
Update run.command.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Dark-Kernel authored Jul 29, 2024
1 parent 7452b80 commit a0111e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/commands/run.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class RunCommand extends BaseCommand {
}

private async fetchConfigurations(): Promise<
ProjectRootConfig & RunData
RunData
> {
const { environment, project, workspace, quitOnDecryptionFailure } = await fetchProjectRootConfig()
const privateKeyConfig = await fetchPrivateKeyConfig()
Expand All @@ -82,7 +82,7 @@ export default class RunCommand extends BaseCommand {
return 'ws'
}

private async connectToSocket(data: ProjectRootConfig & RunData) {
private async connectToSocket(data: RunData) {
Logger.info('Connecting to socket...')
const host = this.baseUrl.substring(this.baseUrl.lastIndexOf('/') + 1)
const websocketUrl = `${this.getWebsocketType(this.baseUrl)}://${host}/change-notifier`
Expand Down

0 comments on commit a0111e3

Please sign in to comment.