Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Feb 11, 2024
1 parent 7828514 commit 2577ee1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions storage/framework/core/actions/src/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ export async function runActions(actions: string[], options?: ActionOptions) {

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

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

Expand Down
3 changes: 1 addition & 2 deletions storage/framework/core/cli/src/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import process from 'node:process'
import { type Result, err, handleError, ok } from '@stacksjs/error-handling'
import type { CliOptions, StacksError, Subprocess } from '@stacksjs/types'
import { ExitCode } from '@stacksjs/types'
import { italic } from './utils'
import { log } from './'

/**
Expand Down Expand Up @@ -82,7 +81,7 @@ export async function exec(command: string | string[], options?: CliOptions): Pr
* ```
*/
export async function execSync(command: string | string[], options?: CliOptions): Promise<string> {
log.debug('Running execSync:', italic(command))
log.debug('Running execSync:', command)
log.debug('execSync Options:', options)

const cmd = Array.isArray(command)
Expand Down

0 comments on commit 2577ee1

Please sign in to comment.