From 12e0cecf02f4d906035a6f0059557416475db106 Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Mon, 21 Oct 2024 18:12:08 -0400 Subject: [PATCH] fix: wait no --- .../src/puter-shell/providers/CompositeCommandProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js b/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js index 91efa9a5..0dd03ada 100644 --- a/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js +++ b/src/phoenix/src/puter-shell/providers/CompositeCommandProvider.js @@ -35,7 +35,7 @@ export class CompositeCommandProvider { for (const provider of this.providers) { const commands = await provider.lookupAll(...a); if ( commands ) { - results.unshift(...commands); + results.push(...commands); } }