We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d56f523 commit af3bf60Copy full SHA for af3bf60
1 file changed
contrib/vagrant/Makefile
@@ -7,9 +7,9 @@ ifndef $(DEIS_NUM_INSTANCES)
7
endif
8
9
define ssh_all
10
- i=1 ; while [[ $$i -le $(DEIS_NUM_INSTANCES) ]] ; do \
+ i=1 ; while [ $$i -le $(DEIS_NUM_INSTANCES) ] ; do \
11
vagrant ssh deis-$$i -c $(1) ; \
12
- ((i = i + 1)) ; \
+ i=`expr $$i + 1` ; \
13
done
14
endef
15
0 commit comments