Skip to content
Permalink
c565218463
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 8 lines (6 sloc) 220 Bytes
#!/usr/bin/env bash
# Only try running R to translate files if there are some files present.
# The Makefile passes in the names of files.
if [ $# -ne 0 ] ; then
Rscript -e "source('bin/generate_md_episodes.R')"
fi