Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: enhance quote to handle empty args #1113

Merged
merged 1 commit into from
Mar 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .size-limit.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{
"name": "all",
"path": "build/*",
"limit": "850.25 kB",
"limit": "850.3 kB",
"brotli": false,
"gzip": false
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zx",
"version": "8.4.0",
"version": "8.3.3",
"description": "A tool for writing better scripts",
"type": "module",
"main": "./build/index.cjs",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {
} from './index.ts'
import { installDeps, parseDeps } from './deps.ts'
import { startRepl } from './repl.ts'
import { randomId, bufToString } from './util.ts'
import { randomId } from './util.ts'
import { transformMarkdown } from './md.ts'
import { createRequire, type minimist } from './vendor.ts'

Expand Down
12 changes: 6 additions & 6 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ export function preferLocalBin(
// }

export function quote(arg: string): string {
if (/^[\w/.\-@:=]+$/.test(arg) || arg === '') {
return arg
}
if (arg === '') return `$''`
if (/^[\w/.\-@:=]+$/.test(arg)) return arg

return (
`$'` +
arg
Expand All @@ -142,9 +142,9 @@ export function quote(arg: string): string {
}

export function quotePowerShell(arg: string): string {
if (/^[\w/.\-]+$/.test(arg) || arg === '') {
return arg
}
if (arg === '') return `''`
if (/^[\w/.\-]+$/.test(arg)) return arg

return `'` + arg.replace(/'/g, "''") + `'`
}

Expand Down
10 changes: 8 additions & 2 deletions test/core.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,14 @@ describe('core', () => {
})

test('can use array as an argument', async () => {
const args = ['-n', 'foo']
assert.equal((await $`echo ${args}`).toString(), 'foo')
const _$ = $({ prefix: '', postfix: '' })
const p1 = _$`echo ${['-n', 'foo']}`
assert.equal(p1.cmd, 'echo -n foo')
assert.equal((await p1).toString(), 'foo')

const p2 = _$`echo ${[1, '', '*', '2']}`
assert.equal(p2.cmd, `echo 1 $'' $'*' 2`)
assert.equal((await p2).toString(), `1 * 2\n`)
})

test('requires $.shell to be specified', async () => {
Expand Down
2 changes: 2 additions & 0 deletions test/util.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,14 @@ describe('util', () => {

test('quote()', () => {
assert.ok(quote('string') === 'string')
assert.ok(quote('') === `$''`)
assert.ok(quote(`'\f\n\r\t\v\0`) === `$'\\'\\f\\n\\r\\t\\v\\0'`)
})

test('quotePowerShell()', () => {
assert.equal(quotePowerShell('string'), 'string')
assert.equal(quotePowerShell(`'`), `''''`)
assert.equal(quotePowerShell(''), `''`)
})

test('duration parsing works', () => {
Expand Down
Loading