Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eecd938

Browse files
committed
missed bits re: no longer embedding rmarkdown
1 parent 272588b commit eecd938

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dependencies/common/install-packages.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set "PATH=C:\Program Files (x86)\Git\bin;%PATH%"
1010
set PATH=%PATH%;%CD%\tools
1111

1212
call:install rsconnect master --no-build-vignettes
13-
call:install rmarkdown master --no-build-vignettes
13+
REM call:install rmarkdown master --no-build-vignettes
1414

1515
GOTO:EOF
1616

src/cpp/session/CMakeLists.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ project (SESSION)
1818
add_subdirectory(workers)
1919

2020
# verify that install-dictionaries, install-mathjax, install-pandoc,
21-
# and install-rmarkdown have been run
21+
# and install-rmarkdown have been run as required
2222
if(NOT EXISTS "${RSTUDIO_DEPENDENCIES_DIR}/common/dictionaries")
2323
message(FATAL_ERROR "Dictionaries not found (re-run install-dependencies script to install)")
2424
endif()
@@ -28,9 +28,9 @@ endif()
2828
if(NOT EXISTS "${RSTUDIO_DEPENDENCIES_DIR}/common/pandoc")
2929
message(FATAL_ERROR "pandoc not found (re-run install-dependencies script to install)")
3030
endif()
31-
if(NOT EXISTS "${RSTUDIO_DEPENDENCIES_DIR}/common/rmarkdown")
32-
message(FATAL_ERROR "rmarkdown package not found (re-run install-dependencies script to install)")
33-
endif()
31+
# if(NOT EXISTS "${RSTUDIO_DEPENDENCIES_DIR}/common/rmarkdown")
32+
# message(FATAL_ERROR "rmarkdown package not found (re-run install-dependencies script to install)")
33+
# endif()
3434
if(NOT EXISTS "${RSTUDIO_DEPENDENCIES_DIR}/common/rsconnect")
3535
message(FATAL_ERROR "rsconnect package not found (re-run install-dependencies script to install)")
3636
endif()
@@ -470,9 +470,9 @@ if (NOT RSTUDIO_SESSION_WIN64)
470470
DESTINATION ${RSTUDIO_INSTALL_BIN}/pandoc)
471471

472472
# install rmarkdown package
473-
file(GLOB RMARKDOWN_PACKAGE "${RSTUDIO_DEPENDENCIES_DIR}/common/rmarkdown*.tar.gz")
474-
install(FILES ${RMARKDOWN_PACKAGE}
475-
DESTINATION ${RSTUDIO_INSTALL_SUPPORTING}/R/packages)
473+
# file(GLOB RMARKDOWN_PACKAGE "${RSTUDIO_DEPENDENCIES_DIR}/common/rmarkdown*.tar.gz")
474+
# install(FILES ${RMARKDOWN_PACKAGE}
475+
# DESTINATION ${RSTUDIO_INSTALL_SUPPORTING}/R/packages)
476476

477477
# install rsconnect package
478478
file(GLOB RSCONNECT_PACKAGE "${RSTUDIO_DEPENDENCIES_DIR}/common/rsconnect*.tar.gz")

0 commit comments

Comments
 (0)