Skip to content

Commit

Permalink
fix to support windows build
Browse files Browse the repository at this point in the history
currently building the application in windows is not possible due to usage of restricted file names ('nul'). This fix is to overcome that limitation.
  • Loading branch information
shailendher authored and Shailendher Ramanujam committed Mar 15, 2017
1 parent 1f3ba44 commit a484112
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile-world.js
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ module.exports = function(grunt) {
dest: 'src/rel/datamaps.nul.js',
replacements: [{
from: '\'__NUL__\'',
to: '<%= grunt.file.read("src/js/data/nul.topo.json") %>'
to: '<%= grunt.file.read("src/js/data/_nul.topo.json") %>'
}]
},
nzl: {
Expand Down Expand Up @@ -2744,7 +2744,7 @@ module.exports = function(grunt) {
},
{
from: '\'__NUL__\'',
to: '<%= grunt.file.read("src/js/data/nul.topo.json") %>'
to: '<%= grunt.file.read("src/js/data/_nul.topo.json") %>'
},
{
from: '\'__NZL__\'',
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a484112

Please sign in to comment.