Skip to content

Commit

Permalink
Fix eslint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Golovin dgolovin@redhat.com
  • Loading branch information
dgolovin committed May 11, 2021
1 parent 9b33a4d commit 4a1d9ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/odo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,8 +763,8 @@ export class OdoImpl implements Odo {

public createEnv(): {} {
const env = {...process.env };
env.ODO_DISABLE_TELEMETRY = "true";
return env;
env.ODO_DISABLE_TELEMETRY = 'true';
return env;
}

public async executeInTerminal(command: CommandText, cwd: string = process.cwd(), name = 'OpenShift'): Promise<void> {
Expand Down

0 comments on commit 4a1d9ac

Please sign in to comment.