Skip to content

Commit f2259cf

Browse files
committed
fix(Makefile): fix check-fleet Makefile target
Just a little indentation issue.
1 parent e3e94fa commit f2259cf

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

includes.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
4444
ROUTER_UNITS = $(shell seq -f "deis-router@%g.service" -s " " $(DEIS_FIRST_ROUTER) 1 $(DEIS_LAST_ROUTER))
4545

4646
check-fleet:
47-
@LOCAL_VERSION=`$(FLEETCTL) -version`; \
48-
REMOTE_VERSION=`ssh -o StrictHostKeyChecking=no core@$(subst :, -p ,$(FLEETCTL_TUNNEL)) fleetctl -version`; \
49-
if [ "$$LOCAL_VERSION" != "$$REMOTE_VERSION" ]; then \
50-
echo "Your fleetctl client version should match the server. Local version: $$LOCAL_VERSION, server version: $$REMOTE_VERSION. Uninstall your local version and install the latest build from https://github.com/coreos/fleet/releases"; exit 1; \
51-
fi
47+
@LOCAL_VERSION=`$(FLEETCTL) -version`; \
48+
REMOTE_VERSION=`ssh -o StrictHostKeyChecking=no core@$(subst :, -p ,$(FLEETCTL_TUNNEL)) fleetctl -version`; \
49+
if [ "$$LOCAL_VERSION" != "$$REMOTE_VERSION" ]; then \
50+
echo "Your fleetctl client version should match the server. Local version: $$LOCAL_VERSION, server version: $$REMOTE_VERSION. Install the appropriate version from https://github.com/coreos/fleet/releases"; exit 1; \
51+
fi

0 commit comments

Comments
 (0)