From 25a34b1363dd764c79d690af578d3ea6472e079c Mon Sep 17 00:00:00 2001 From: Miguel Martinez Date: Fri, 17 Jun 2016 17:22:38 -0700 Subject: [PATCH] Sorting Wildcard function --- _proto/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_proto/Makefile b/_proto/Makefile index 1fab11d40..c1dffe424 100644 --- a/_proto/Makefile +++ b/_proto/Makefile @@ -9,15 +9,15 @@ target = go plugins = grpc chart_ias = $(subst $(space),$(comma),$(addsuffix =$(import_path)/$(chart_pkg),$(addprefix M,$(chart_pbs)))) -chart_pbs = $(wildcard hapi/chart/*.proto) +chart_pbs = $(sort $(wildcard hapi/chart/*.proto)) chart_pkg = chart release_ias = $(subst $(space),$(comma),$(addsuffix =$(import_path)/$(release_pkg),$(addprefix M,$(release_pbs)))) -release_pbs = $(wildcard hapi/release/*.proto) +release_pbs = $(sort $(wildcard hapi/release/*.proto)) release_pkg = release services_ias = $(subst $(space),$(comma),$(addsuffix =$(import_path)/$(services_pkg),$(addprefix M,$(services_pbs)))) -services_pbs = $(wildcard hapi/services/*.proto) +services_pbs = $(sort $(wildcard hapi/services/*.proto)) services_pkg = services google_deps = Mgoogle/protobuf/timestamp.proto=github.com/golang/protobuf/ptypes/timestamp,Mgoogle/protobuf/any.proto=github.com/golang/protobuf/ptypes/any