Skip to content
Snippets Groups Projects
Commit 024ae86b authored by bryanl's avatar bryanl
Browse files

Allow make file to generate ks bin with custom version and name


Signed-off-by: default avatarbryanl <bryanliles@gmail.com>
parent 61b3b6b8
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
VERSION = dev-$(shell date +%FT%T%z)
VERSION?=dev-$(shell date +%FT%T%z)
KS_BIN?=ks
GO = go
EXTRA_GO_FLAGS =
......@@ -37,7 +38,7 @@ INTEGRATION_TEST_FIXTURES = ./fixtures
all: ks docs
ks:
$(GO) build -o ks $(GO_FLAGS) .
$(GO) build -o $(KS_BIN) $(GO_FLAGS) .
docs:
$(DOC_GEN_FILE)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment