Skip to content

Commit

Permalink
fixed execute cli parity
Browse files Browse the repository at this point in the history
  • Loading branch information
plxity committed Dec 12, 2024
1 parent c58c202 commit bf0e18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import logout from "./logout";
import triggers from "./triggers";
import whoami from "./whoami";
import actions from "./actions";
import execute from './execute'
import execute from "./execute";

// SDK Imports
import { TELEMETRY_EVENTS } from "../sdk/utils/telemetry/events";
Expand All @@ -31,7 +31,7 @@ new integrations(program);
new triggers(program);
new add(program);
new actions(program);
new execute(program)
new execute(program);

function formatLine(content: string): string {
return `${content}`;
Expand Down

0 comments on commit bf0e18a

Please sign in to comment.