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.
Already up-to-date
1 parent 7b6963f commit 5a8ea66Copy full SHA for 5a8ea66
src/core/packageManager.ts
@@ -94,7 +94,8 @@ export const pnpmCommand = async ({
94
const str = String(chunk).trim()
95
if (!str) return
96
console.log('[pnpm]', str)
97
- if (str === 'Already up-to-date') reportProgress({ message: str })
+ const firstLine = str.split('\n')[0]!
98
+ if (firstLine === 'Already up-to-date') reportProgress({ message: firstLine })
99
})
100
101
// pnpm.stdout!.on('data', chunk => {
0 commit comments