blob: 7efbd7b2906a17133009fdf4149b0cc3b226c4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
###############################################################################
#
# This script regenerates the source file that embeds systray.dll
#
###############################################################################
go get github.com/jteeuwen/go-bindata/go-bindata
go-bindata -nomemcopy -nocompress -pkg systray -prefix dll -o systraydll_windows.go dll
|