diff options
author | Felix Lange <fjl@twurst.com> | 2014-10-24 07:04:10 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-10-24 07:04:10 +0800 |
commit | e73aad959e530ecfbaff0c041ea881d4c9c95867 (patch) | |
tree | e85da98fd2d6ffde5b770ab3e7bfd31b0cfb54bf /ethutil | |
parent | 119c5b40a7ed1aea1c871c0cb56956b8ef9303d9 (diff) | |
download | dexon-e73aad959e530ecfbaff0c041ea881d4c9c95867.tar.gz dexon-e73aad959e530ecfbaff0c041ea881d4c9c95867.tar.zst dexon-e73aad959e530ecfbaff0c041ea881d4c9c95867.zip |
ethutil: re-add build constraints in script*.go (fixes #151)
Diffstat (limited to 'ethutil')
-rw-r--r-- | ethutil/script_unix.go | 2 | ||||
-rw-r--r-- | ethutil/script_windows.go | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ethutil/script_unix.go b/ethutil/script_unix.go index bd087e7e0..37e5bf91b 100644 --- a/ethutil/script_unix.go +++ b/ethutil/script_unix.go @@ -1,3 +1,5 @@ +// +build !windows + package ethutil import ( diff --git a/ethutil/script_windows.go b/ethutil/script_windows.go index 4f94c6448..ef239cd51 100644 --- a/ethutil/script_windows.go +++ b/ethutil/script_windows.go @@ -1,3 +1,5 @@ +// +build windows + package ethutil import ( |