Skip to content

Commit

Permalink
Use /deploy/
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Feb 10, 2014
1 parent 5a0454e commit 72bc37e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Thumbs.db
.project
.settings*
sftp-config.json
/_deploy/
/deploy/

# Ignore all log files except for .htaccess
/logs/*
Expand Down
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,23 +141,23 @@ module.exports = function( grunt ){
'!package.json',
'!node_modules/**'
],
dest: '_deploy',
dest: 'deploy',
expand: true,
dot: true
},
},

clean: {
deploy: {
src: [ '_deploy' ]
src: [ 'deploy' ]
},
},

wp_deploy: {
deploy: {
options: {
plugin_slug: 'woocommerce',
build_dir: '_deploy'
build_dir: 'deploy'
},
}
}
Expand Down

0 comments on commit 72bc37e

Please sign in to comment.