From 3d0c258c724a855d90b61e4a55c2209d0fc45b2e Mon Sep 17 00:00:00 2001
From: Thomas Skowron
Date: Tue, 22 May 2018 08:23:37 +0200
Subject: [PATCH] FreeBSD compilation target
---
magefile.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/magefile.go b/magefile.go
index 73d383f9..793b86b7 100644
--- a/magefile.go
+++ b/magefile.go
@@ -101,6 +101,7 @@ var platforms []Platform = []Platform{
{"darwin", "386", ""},
{"windows", "amd64", ".exe"},
{"windows", "386", ".exe"},
+ {"freebsd", "amd64", ""},
}
// productName can be overridden by environ product name
|