Skip to content

Commit 3e1708c

Browse files
author
Duncan Grazier
committed
fix(Makefile): Information about missing FLEETCTL_TUNNEL
For the following commands, it blows up in a non-informational way. ``` 09:24 deis‹master› » git rev-parse HEAD 3378532 ``` ``` 09:26 deis‹master› » make --version GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program built for i386-apple-darwin11.3.0 ``` ``` 09:24 deis‹master› » make pull Makefile:10: *** commands commence before first target. Stop. ``` After this fix: ``` 09:37 deis‹master› » make pull Makefile:10: *** You need to set FLEETCTL_TUNNEL to the IP address of a server in the cluster.. Stop. ```
1 parent 3378532 commit 3e1708c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifndef FLEETCTL
77
endif
88

99
ifndef FLEETCTL_TUNNEL
10-
$(error You need to set FLEETCTL_TUNNEL to the IP address of a server in the cluster.)
10+
$(error You need to set FLEETCTL_TUNNEL to the IP address of a server in the cluster.)
1111
endif
1212

1313
ifndef DEIS_NUM_INSTANCES

0 commit comments

Comments
 (0)