diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-09-25 03:36:37 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-09-25 03:36:37 +0800 |
commit | 206672db5e2fe99892013e80ce4b5fa60ba8a196 (patch) | |
tree | 4cfb53aef7b46fa73b566b1360104973b3e553f6 | |
parent | 5cb4120ef517830e8c45007f138ffd343ccb164a (diff) | |
parent | c5828905905cca068e9f2fe3ad7072623a05958c (diff) | |
download | go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar.gz go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar.bz2 go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar.lz go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar.xz go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.tar.zst go-tangerine-206672db5e2fe99892013e80ce4b5fa60ba8a196.zip |
Merge pull request #52 from nicksavers/winfix
Add blank line after +build comment
-rw-r--r-- | ethutil/script.go | 1 | ||||
-rw-r--r-- | ethutil/script_windows.go | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/ethutil/script.go b/ethutil/script.go index 34eadff85..8301466cc 100644 --- a/ethutil/script.go +++ b/ethutil/script.go @@ -1,4 +1,5 @@ // +build !windows !cgo + package ethutil import ( diff --git a/ethutil/script_windows.go b/ethutil/script_windows.go index 4f94c6448..c1b2d1b21 100644 --- a/ethutil/script_windows.go +++ b/ethutil/script_windows.go @@ -1,3 +1,5 @@ +// +build windows, cgo + package ethutil import ( |