Skip to content

Commit af3bf60

Browse files
committed
Fix contrib/vagrant/Makefile to work on non bash-symlinked /bin/sh.
1 parent d56f523 commit af3bf60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/vagrant/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ ifndef $(DEIS_NUM_INSTANCES)
77
endif
88

99
define ssh_all
10-
i=1 ; while [[ $$i -le $(DEIS_NUM_INSTANCES) ]] ; do \
10+
i=1 ; while [ $$i -le $(DEIS_NUM_INSTANCES) ] ; do \
1111
vagrant ssh deis-$$i -c $(1) ; \
12-
((i = i + 1)) ; \
12+
i=`expr $$i + 1` ; \
1313
done
1414
endef
1515

0 commit comments

Comments
 (0)