3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00

build: adds IANA timezone info to windows build ()

This commit is contained in:
Leonard Gram 2019-12-10 16:00:37 +01:00 committed by GitHub
parent 2d5dc5d6b2
commit 67d83d1ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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 %>'
});