Skip to content

Commit

Permalink
Changed 'path' to 'open'
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstorey authored Feb 2, 2017
1 parent b8c2494 commit a39d642
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grunt/config/connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = function (grunt, options) {

var port = grunt.option('port') || 9001;
var host = grunt.option('host') || "localhost";

return {
server: {
options: {
Expand All @@ -17,7 +17,7 @@ module.exports = function (grunt, options) {
port: port,
base: '<%= outputdir %>',
keepalive:true,
path: 'http://'+host+':'+port+'/scorm_test_harness.html'
open: 'http://'+host+':'+port+'/scorm_test_harness.html'
}
}
}
Expand Down

0 comments on commit a39d642

Please sign in to comment.