Use template strings
This commit is contained in:
parent
108a3473ed
commit
ce6a46ee59
1 changed files with 3 additions and 3 deletions
|
@ -62,9 +62,9 @@ and `crashesDirectory` with appropriate values.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const args = [
|
const args = [
|
||||||
'--reporter-url=' + submitURL,
|
`--reporter-url=${submitURL}`,
|
||||||
'--application-name=' + productName,
|
`--application-name=${productName}`,
|
||||||
'--crashes-directory=' + crashesDirectory
|
`--crashes-directory=${crashesDirectory}`
|
||||||
]
|
]
|
||||||
const env = {
|
const env = {
|
||||||
ELECTRON_INTERNAL_CRASH_SERVICE: 1
|
ELECTRON_INTERNAL_CRASH_SERVICE: 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue