Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fix: remove parens around platform/arch
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 14, 2018
1 parent fad8c37 commit d3f78ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class Config implements IConfig {
this.windows = this.platform === 'win32'
this.bin = this.pjson.oclif.bin || this.name
this.dirname = this.pjson.oclif.dirname || this.name
this.userAgent = `${this.name}/${this.version} (${this.platform}-${this.arch}) node-${process.version}`
this.userAgent = `${this.name}/${this.version} ${this.platform}-${this.arch} node-${process.version}`
this.shell = this._shell()
this.debug = this._debug()

Expand Down

0 comments on commit d3f78ba

Please sign in to comment.