From ef947609587ae097b3760c7100490a71c0c8cf83 Mon Sep 17 00:00:00 2001 From: Dan Mace Date: Wed, 2 Jun 2021 10:30:29 -0400 Subject: [PATCH] Move ignition-server to the top level directory This commit simply moves ignition-server to its own top-level directory to match the convention of other discrete binaries. --- Makefile | 2 +- {hypershift-operator/ignitionserver => ignition-server}/main.go | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {hypershift-operator/ignitionserver => ignition-server}/main.go (100%) diff --git a/Makefile b/Makefile index 9ce1149a13..519ce5cfdf 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ verify: deps api fmt vet # Build ignition-server binary .PHONY: ignition-server ignition-server: - $(GO_BUILD_RECIPE) -o bin/ignition-server ./hypershift-operator/ignitionserver + $(GO_BUILD_RECIPE) -o bin/ignition-server ./ignition-server # Build hypershift-operator binary .PHONY: hypershift-operator diff --git a/hypershift-operator/ignitionserver/main.go b/ignition-server/main.go similarity index 100% rename from hypershift-operator/ignitionserver/main.go rename to ignition-server/main.go