Skip to content

Commit 2577ee1

Browse files
committed
chore: wip
1 parent 7828514 commit 2577ee1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

storage/framework/core/actions/src/helpers/utils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ export async function runActions(actions: string[], options?: ActionOptions) {
5959

6060
const commands = actions.map(action => `bun --bun ${p.relativeActionsPath(`${action}.ts`)} ${opts}`)
6161

62-
// eslint-disable-next-line no-console
63-
console.log('this should have inherit:', o)
6462
return await runCommands(commands, o)
6563
}
6664

storage/framework/core/cli/src/exec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import process from 'node:process'
22
import { type Result, err, handleError, ok } from '@stacksjs/error-handling'
33
import type { CliOptions, StacksError, Subprocess } from '@stacksjs/types'
44
import { ExitCode } from '@stacksjs/types'
5-
import { italic } from './utils'
65
import { log } from './'
76

87
/**
@@ -82,7 +81,7 @@ export async function exec(command: string | string[], options?: CliOptions): Pr
8281
* ```
8382
*/
8483
export async function execSync(command: string | string[], options?: CliOptions): Promise<string> {
85-
log.debug('Running execSync:', italic(command))
84+
log.debug('Running execSync:', command)
8685
log.debug('execSync Options:', options)
8786

8887
const cmd = Array.isArray(command)

0 commit comments

Comments
 (0)