Skip to content
This repository has been archived by the owner on Nov 27, 2021. It is now read-only.

Commit

Permalink
Fix getProjectPath()
Browse files Browse the repository at this point in the history
  • Loading branch information
shry committed May 3, 2019
1 parent 1cb949e commit 8b13b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/wpcli.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class WpcliCommand extends Command {
const wpCliCmd = argv.join(' ')

this.log('Run command: wp ' + wpCliCmd)
shell.exec('docker-compose --project-directory ' + project.getProjectPath() + ' run --rm wordpress-cli ' + wpCliCmd)
shell.exec('docker-compose --project-directory ' + this.wordupProject.getProjectPath() + ' run --rm wordpress-cli ' + wpCliCmd)

}
}
Expand Down

0 comments on commit 8b13b88

Please sign in to comment.