@@ -141,9 +141,9 @@ async function installPackagesGlobally(packages: string[], options: { verbose?:
141
141
142
142
await createGlobalBinarySymlinks ( globalEnvDir )
143
143
// Skip shell integration in CI environments or if explicitly disabled
144
- const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true' ||
145
- process . env . CI === 'true' ||
146
- process . env . GITHUB_ACTIONS === 'true'
144
+ const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true'
145
+ || process . env . CI === 'true'
146
+ || process . env . GITHUB_ACTIONS === 'true'
147
147
if ( ! options . quiet && ! options . noInteractive && ! skipShellIntegration ) {
148
148
await ensureShellIntegrationInstalled ( )
149
149
triggerShellGlobalRefresh ( )
@@ -376,7 +376,7 @@ async function installGlobalDependencies(options: { dryRun?: boolean, quiet?: bo
376
376
try {
377
377
process . env . LAUNCHPAD_SUPPRESS_INSTALL_SUMMARY = 'true'
378
378
const pkgNames = [ 'php' , 'php.net' ]
379
- const isListed = ( val : unknown ) : boolean => {
379
+ const _isListed = ( val : unknown ) : boolean => {
380
380
if ( typeof val === 'string' )
381
381
return pkgNames . includes ( val )
382
382
if ( Array . isArray ( val ) )
@@ -509,9 +509,9 @@ const command: Command = {
509
509
await createGlobalBinarySymlinks ( basePath )
510
510
}
511
511
// Skip shell integration in CI environments or if explicitly disabled
512
- const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true' ||
513
- process . env . CI === 'true' ||
514
- process . env . GITHUB_ACTIONS === 'true'
512
+ const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true'
513
+ || process . env . CI === 'true'
514
+ || process . env . GITHUB_ACTIONS === 'true'
515
515
if ( ! skipShellIntegration ) {
516
516
await ensureShellIntegrationInstalled ( )
517
517
triggerShellGlobalRefresh ( )
@@ -561,9 +561,9 @@ const command: Command = {
561
561
await createGlobalBinarySymlinks ( basePath )
562
562
}
563
563
// Skip shell integration in CI environments or if explicitly disabled
564
- const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true' ||
565
- process . env . CI === 'true' ||
566
- process . env . GITHUB_ACTIONS === 'true'
564
+ const skipShellIntegration = process . env . LAUNCHPAD_SKIP_SHELL_INTEGRATION === 'true'
565
+ || process . env . CI === 'true'
566
+ || process . env . GITHUB_ACTIONS === 'true'
567
567
if ( ! skipShellIntegration ) {
568
568
await ensureShellIntegrationInstalled ( )
569
569
triggerShellGlobalRefresh ( )
0 commit comments