Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit 44875b7

Browse files
committed
Chores for tomorrow demo
1 parent b77c4f9 commit 44875b7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ check_vncviewer:
119119
warn_wmctrl:
120120
@# Only check if not in a CI server
121121
@if [ "${BUILD_NUMBER}" = "" ]; then \
122-
if ! eval ${WMCTRL_CHECK_CMD}; then \
122+
if ! eval ${WMCTRL_CHECK_CMD} >/dev/null; then \
123123
${ECHOWARN} ${WMCTRL_CLIENT_ERROR_MSG} ; \
124124
${ECHOWARN} " RUN: make install_wmctrl" ; \
125125
fi ; \
@@ -130,7 +130,7 @@ check_wmctrl:
130130
echo "Sorry: moving windows with wmctrl in OSX is not upported." 1>&2 ; \
131131
exit 11 ; \
132132
fi
133-
@if ! eval ${WMCTRL_CHECK_CMD}; then \
133+
@if ! eval ${WMCTRL_CHECK_CMD} >/dev/null; then \
134134
${ECHOERR} ${WMCTRL_CLIENT_ERROR_MSG} ; \
135135
exit 5; \
136136
fi

docs/make.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Setup
44
You should replace `mock` with your web service under test within the generated [docker-compose.yml][] file.
55

6-
wget -nv "https://raw.githubusercontent.com/elgalu/docker-selenium/latest/Makefile"
6+
wget -nv https://git.io/vKrBP -O Makefile
77
make get setup #first-time
88

99
If you want VNC helpers support _(optional)_

0 commit comments

Comments
 (0)