Skip to content

Commit

Permalink
Merge pull request #369 from crazy-max/preserve-quotes
Browse files Browse the repository at this point in the history
Preserve quotes inside unquoted field
  • Loading branch information
crazy-max committed May 23, 2021
2 parents 95f9975 + c9589d1 commit ca26f5b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions __tests__/context.test.ts
Expand Up @@ -361,6 +361,22 @@ ccc`],
'--push',
'https://github.com/docker/build-push-action.git#heads/master'
]
],
[
'0.4.2',
new Map<string, string>([
['context', '.'],
['labels', 'org.opencontainers.image.title=filter_results_top_n\norg.opencontainers.image.description=Reference implementation of operation "filter results (top-n)"'],
['outputs', 'type=local,dest=./release-out']
]),
[
'buildx',
'build',
'--label', 'org.opencontainers.image.title=filter_results_top_n',
'--label', 'org.opencontainers.image.description=Reference implementation of operation "filter results (top-n)"',
'--output', 'type=local,dest=./release-out',
'.'
]
]
])(
'given %p with %p as inputs, returns %p',
Expand Down
1 change: 1 addition & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/context.ts
Expand Up @@ -185,6 +185,7 @@ export async function getInputList(name: string, ignoreComma?: boolean): Promise

for (let output of (await csvparse(items, {
columns: false,
relax: true,
relaxColumnCount: true,
skipLinesWithEmptyValues: true
})) as Array<string[]>) {
Expand Down

0 comments on commit ca26f5b

Please sign in to comment.