Skip to content

Commit

Permalink
Fix the path error issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jun 10, 2018
1 parent ce2c48f commit 4a40233
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .bin/kkt.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ program
.command('build')
.description('Builds the app for production to the dist folder.')
.action((cmd) => {
require('../src/build')(cmd)
require('../script/build')(cmd)
})

program
Expand All @@ -51,7 +51,7 @@ program
console.log()
})
.action((cmd) => {
require('../src/start')(cmd)
require('../script/start')(cmd)
})

program
Expand All @@ -61,7 +61,7 @@ program
.option('-d, --dir [path]', 'Specify the deployment directory.', 'dist')
.option('-u, --url <dir>', 'Specify repository URL.')
.action((cmd) => {
require('../src/deploy')(cmd)
require('../script/deploy')(cmd)
})

program
Expand Down

0 comments on commit 4a40233

Please sign in to comment.