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

Commit

Permalink
Merge pull request #255 from ammendonca/HAWKULAR-384-GULP
Browse files Browse the repository at this point in the history
Fix gulp to work with new path from HAWKULAR-384
  • Loading branch information
mtho11 committed Jun 25, 2015
2 parents 1514238 + 6768e03 commit 629201a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/console/src/main/scripts/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var gulp = require('gulp'),

var POM_MAIN_PATH = '../../../../pom.xml';
var DIST_TARGET_PATH = '../../../../dist/target/';
var WF_CONSOLE_PATH = 'wildfly-9.0.0.CR2/modules/org/hawkular/nest/main/deployments/hawkular-console.war/dist/';
var WF_CONSOLE_PATH = 'modules/org/hawkular/nest/main/deployments/hawkular-console.war/dist/';

var plugins = gulpLoadPlugins({});
var pkg = require('./package.json');
Expand Down Expand Up @@ -63,7 +63,7 @@ var config = {
gulp.task('set-server-path', function(done) {
var parser = new xml2js.Parser();
parser.addListener('end', function(result) {
config.serverPath = DIST_TARGET_PATH + 'hawkular-' + result.project.version + '/' + WF_CONSOLE_PATH;
config.serverPath = DIST_TARGET_PATH + 'hawkular-' + result.project.version + '/hawkular-' + result.project.version + '/' + WF_CONSOLE_PATH;
done();
});

Expand Down

0 comments on commit 629201a

Please sign in to comment.