Skip to content

Commit

Permalink
Fix source list
Browse files Browse the repository at this point in the history
  • Loading branch information
almahmoud authored Sep 5, 2023
1 parent 5391a4c commit 81ad0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/request.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ RUN sudo apt-get update && sudo apt-get -y install apt-file && $EXTRACMDS cd /ho
EOF
elif [ ! -z "$SOURCE" ]; then
cat << EOF >> "generated/$ID.Dockerfile"
RUN sudo apt-get update && sudo apt-get -y install apt-file && $EXTRACMDS cd /home/rstudio && echo "$VIGNLIST" | tr ',' '\n' > vignlist && echo "$SRCLIST" | tr ',' '\n' > sourcelist && cat sourcelist | xargs -i bash -c "git clone {} && cp -r $(basename {}) tmpsource/" && cd tmpsource && curl -o install.sh https://raw.githubusercontent.com/Bioconductor/workshop-contributions/main/.github/scripts/install_missing.sh && cat ../vignlist | xargs -i bash install.sh {} && cd .. && rm -rf vignlist tmpsource/ $POSTCMD
RUN sudo apt-get update && sudo apt-get -y install apt-file && $EXTRACMDS cd /home/rstudio && echo "$VIGNLIST" | tr ',' '\n' > vignlist && echo "$SOURCE" | tr ',' '\n' > sourcelist && cat sourcelist | xargs -i bash -c "git clone {} && cp -r $(basename {}) tmpsource/" && cd tmpsource && curl -o install.sh https://raw.githubusercontent.com/Bioconductor/workshop-contributions/main/.github/scripts/install_missing.sh && cat ../vignlist | xargs -i bash install.sh {} && cd .. && rm -rf vignlist tmpsource/ $POSTCMD
EOF
fi
fi

0 comments on commit 81ad0b3

Please sign in to comment.