We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0709fe commit d46c984Copy full SHA for d46c984
packages/e2e-tests/run.ts
@@ -71,9 +71,9 @@ groupCIOutput('Test Registry Setup', () => {
71
PUBLISH_PACKAGES_DOCKER_IMAGE_NAME,
72
'--file',
73
'./Dockerfile.publish-packages',
74
- publishScriptNodeVersion ? `--build-arg NODE_VERSION=${publishScriptNodeVersion}` : undefined,
+ ...(publishScriptNodeVersion ? ['--build-arg', `NODE_VERSION=${publishScriptNodeVersion}`] : []),
75
'.',
76
- ].filter((arg): arg is string => arg !== undefined),
+ ],
77
{
78
encoding: 'utf8',
79
stdio: 'inherit',
0 commit comments