Skip to content

Commit 76f5a75

Browse files
committedFeb 25, 2023
Re-number build tasks to match new running order
1 parent ace9a77 commit 76f5a75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎tasks/data-meta.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function filterCountries (allCountries) {
136136
}
137137

138138
module.exports = function (grunt) {
139-
grunt.registerTask('data-meta', '4. Parse metadata from zone1970.tab', function (version) {
139+
grunt.registerTask('data-meta', '2. Parse metadata from zone1970.tab', function (version) {
140140
version = version || 'latest';
141141
var countries = parseCountries(grunt, version);
142142
var zones = parseZones(grunt, version, countries);

‎tasks/data-zdump.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var path = require('path'),
44
execFile = require('child_process').execFile;
55

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

1010
var done = this.async(),

‎tasks/data-zic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var path = require('path'),
44
execFile = require('child_process').execFile;
55

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

1010
var done = this.async(),

0 commit comments

Comments
 (0)
Please sign in to comment.