mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
Fix community package update (#3914)
* 🐛 Fix community package update by using `npm i pkg@latest` always
This commit is contained in:
@@ -293,7 +293,7 @@ class LoadNodesAndCredentialsClass {
|
||||
): Promise<InstalledPackages> {
|
||||
const downloadFolder = UserSettings.getUserN8nFolderDowloadedNodesPath();
|
||||
|
||||
const command = `npm update ${packageName}`;
|
||||
const command = `npm i ${packageName}@latest`;
|
||||
|
||||
try {
|
||||
await executeCommand(command);
|
||||
|
||||
Reference in New Issue
Block a user