File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import {
34
34
formatCmd ,
35
35
getCallerLocation ,
36
36
noop ,
37
- normalizeMultilinePieces ,
38
37
parseDuration ,
39
38
quote ,
40
39
quotePowerShell ,
@@ -150,7 +149,7 @@ export const $: Shell & Options = new Proxy<Shell & Options>(
150
149
const promise = new ProcessPromise ( ( ...args ) => ( [ resolve , reject ] = args ) )
151
150
const cmd = buildCmd (
152
151
$ . quote ,
153
- normalizeMultilinePieces ( pieces as TemplateStringsArray ) ,
152
+ ( pieces as TemplateStringsArray ) ,
154
153
args
155
154
) as string
156
155
const snapshot = getStore ( )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ describe('core', () => {
49
49
assert . equal ( ( await $ `echo -n ${ '' } ` ) . toString ( ) , '' )
50
50
} )
51
51
52
- test ( 'handles multiline literals' , async ( ) => {
52
+ test . skip ( 'handles multiline literals' , async ( ) => {
53
53
assert . equal (
54
54
(
55
55
await $ `echo foo
You can’t perform that action at this time.
0 commit comments