From 45dcd3430a416953c9a3dcc1ca3c4f155be0b5db Mon Sep 17 00:00:00 2001 From: Jacob Reynolds Date: Wed, 28 Feb 2018 11:04:56 -0600 Subject: [PATCH] Explicitly naming python for oui This might just be an issue with Alpine linux in Docker, but referencing python with `./` notation even with `#!/usr/bin/python` declared would not execute the script. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad76eb42..07b91263 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ build: resources resources: oui oui: - @./network/make_oui.py + @python ./network/make_oui.py vet: @go vet ./...