Skip to content

Commit

Permalink
Fixed a issue related to executing the 'dependancy:bower' task with w…
Browse files Browse the repository at this point in the history
…rong args on windows os.
  • Loading branch information
licoliu committed Feb 13, 2017
1 parent 368e5c4 commit fbcd6db
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"group": "atom.lico",
"artifact": "pomy",
"name": "pomy",
"version": "1.5.4",
"version": "1.5.5",
"title": "pomy - a software project management and comprehension tool",
"description": "Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.",
"main": "",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"group": "atom.lico",
"artifact": "pomy",
"name": "pomy",
"version": "1.5.4",
"version": "1.5.5",
"title": "pomy - a software project management and comprehension tool",
"description": "Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.",
"main": "",
Expand Down
2 changes: 1 addition & 1 deletion pomy.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"group": "com.atomunion",
"artifact": "pomy",
"version": "1.5.4",
"version": "1.5.5",
"name": "pomy",
"title": "pomy - a software project management and comprehension tool",
"description": "Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.",
Expand Down
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pomy",
"description": "pomy.",
"version": "1.5.4",
"version": "1.5.5",
"author": {
"name": "lico",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion site/plugins/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs",
"description": "jsdoc.",
"version": "1.5.4",
"version": "1.5.5",
"author": {
"name": "lico",
"email": "[email protected]"
Expand Down
5 changes: 5 additions & 0 deletions tasks/lifecycle/default/dependancy.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ gulp.task('dependancy:bower', function(cb) {
cb(code);
} else {
args = [];

if (process.platform === "win32") {
args.push("/c");
}

args.push(global.getCommandPath('gulp'));
args.push('config:bower-after');

Expand Down

0 comments on commit fbcd6db

Please sign in to comment.