Skip to content

Commit

Permalink
Re-number build tasks to match new running order
Browse files Browse the repository at this point in the history
  • Loading branch information
gilmoreorless committed Feb 25, 2023
1 parent ace9a77 commit 76f5a75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tasks/data-meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function filterCountries (allCountries) {
}

module.exports = function (grunt) {
grunt.registerTask('data-meta', '4. Parse metadata from zone1970.tab', function (version) {
grunt.registerTask('data-meta', '2. Parse metadata from zone1970.tab', function (version) {
version = version || 'latest';
var countries = parseCountries(grunt, version);
var zones = parseZones(grunt, version, countries);
Expand Down
2 changes: 1 addition & 1 deletion tasks/data-zdump.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var path = require('path'),
execFile = require('child_process').execFile;

module.exports = function (grunt) {
grunt.registerTask('data-zdump', '3. Dump data with zdump(8).', function (version) {
grunt.registerTask('data-zdump', '4. Dump data with zdump(8).', function (version) {
version = version || 'latest';

var done = this.async(),
Expand Down
2 changes: 1 addition & 1 deletion tasks/data-zic.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var path = require('path'),
execFile = require('child_process').execFile;

module.exports = function (grunt) {
grunt.registerTask('data-zic', '2. Compile data sources with zic(8).', function (version) {
grunt.registerTask('data-zic', '3. Compile data sources with zic(8).', function (version) {
version = version || 'latest';

var done = this.async(),
Expand Down

0 comments on commit 76f5a75

Please sign in to comment.