Skip to content

Commit

Permalink
Attempt to fix permissions for R build
Browse files Browse the repository at this point in the history
  • Loading branch information
wkmor1 committed Jun 3, 2024
1 parent 82b0117 commit dea80f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion install_R.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ BUILDDEPS="curl \
apt-get update && apt-get install -y --no-install-recommends $BUILDDEPS

wget https://cran.r-project.org/src/base/R-4/R-${R_VERSION}.tar.gz
tar xzf R-${R_VERSION}.tar.gz --no-same-owner
mkdir -p R-${R_VERSION}
chown root:staff R-${R_VERSION}
chmod g+ws R-${R_VERSION}
tar xzf R-${R_VERSION}.tar.gz --no-same-owner --no-overwrite-dir

cd R-${R_VERSION}
R_PAPERSIZE=letter \
Expand Down

0 comments on commit dea80f8

Please sign in to comment.