Skip to content

Commit

Permalink
2.x: Fixed run.js route, renamed --verbose to --debug with docker com…
Browse files Browse the repository at this point in the history
…pose 2
  • Loading branch information
DionisioFG committed Mar 8, 2024
1 parent 5933dd2 commit d01600a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/provision.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default class ProvisionCmd extends AnsibleCmd {
const workspace = this.ansibleProjectPlaybooksPath
const repo = this.activeProjectInfo.project_name
let cmd = '--own-branch ' + this.ownBranch
if (this.verbose) cmd += ' --verbose'
if (this.verbose) cmd += ' --debug'
cmd += ' --config-branch ' + this.configBranch
cmd += ' --workspace ' + workspace
cmd += ' --repo ' + repo
Expand Down
2 changes: 1 addition & 1 deletion src/controller-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default class ControllerManager {
this.dockerComposeBin +
' -f ' +
this.controllerComposeFile +
' -p ce_dev_controller up -d --verbose',
' -p ce_dev_controller up -d --debug',
{cwd: this.config.dataDir, stdio: 'inherit'},
)
// Ensure uid/gid.
Expand Down
2 changes: 1 addition & 1 deletion templates/prebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ OWN_DIR=$(pwd -P)
WORK_DIR=$(mktemp -d)

# ce-dev "binary"
CE_DEV_BIN="$OWN_DIR/bin/run"
CE_DEV_BIN="$OWN_DIR/bin/run.js"

# Create a project.
# @param $1
Expand Down

0 comments on commit d01600a

Please sign in to comment.