Skip to content

Commit

Permalink
manifest: Stop wrapping talk-name with ''
Browse files Browse the repository at this point in the history
Fixes #198
  • Loading branch information
bilelmoussaoui committed Jan 5, 2023
1 parent 76fb625 commit 193a4c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- Stop wrapping `--talk-name=` ending with `*` in `''`

## [0.0.30]

- Add command to show application's data directory
Expand Down
7 changes: 0 additions & 7 deletions src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,6 @@ export class Manifest {
// --require-version is not supported by flatpak-builder, so filter it out
return !['--metadata', '--require-version'].includes(arg.split('=')[0])
})
.map((arg) => {
if (arg.endsWith('*')) {
const [key, value] = arg.split('=')
return `${key}='${value}'`
}
return arg
})
}

runtimeTerminal(): vscode.TerminalOptions {
Expand Down

0 comments on commit 193a4c7

Please sign in to comment.