build: adds IANA timezone info to windows build (#21001)

pull/21009/head
Leonard Gram 6 years ago committed by GitHub
parent 2d5dc5d6b2
commit 67d83d1ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      scripts/build/build-all.sh
  2. 2
      scripts/grunt/release_task.js

@ -115,6 +115,9 @@ if [ -d '/tmp/phantomjs/windows' ]; then
else
echo 'PhantomJS binaries for Windows missing!'
fi
cp /usr/local/go/lib/time/zoneinfo.zip tools/zoneinfo.zip
go run build.go -goos windows -pkg-arch amd64 ${OPT} package-only
rm tools/zoneinfo.zip
go run build.go latest

@ -33,7 +33,7 @@ module.exports = function(grunt) {
});
grunt.config('copy.backend_files', {
expand: true,
src: ['conf/**', 'tools/phantomjs/*', 'scripts/*'],
src: ['conf/**', 'tools/**', 'scripts/*'],
options: { mode: true},
dest: '<%= tempDir %>'
});

Loading…
Cancel
Save