You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Testing whether or not we are in a docker container
ifeq ("$(wildcard /proc/1/cgroup)","")
RCMD="devtools::install()"
else ifneq ("$(shell grep -cq docker /proc/1/cgroup)","0")
RCMD="Sys.Date()"
else
RCMD="devtools::install()"
endif
The text was updated successfully, but these errors were encountered:
On Apr 18, 2018, at 09:54 , Alfonso R. Reyes ***@***.***> wrote:
You are missing a endif in the Makefile:
# Testing whether or not we are in a docker container
ifeq ("$(wildcard /proc/1/cgroup)","")
RCMD="devtools::install()"
else ifneq ("$(shell grep -cq docker /proc/1/cgroup)","0")
RCMD="Sys.Date()"
else
RCMD="devtools::install()"
endif
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#25>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ADeIlpPRH5Kz8qdle7PVZfHf_hPPVbcvks5tp1ObgaJpZM4TaOMu>.
You are missing a
endif
in the Makefile:The text was updated successfully, but these errors were encountered: