Skip to content

Commit

Permalink
move _bin/deps into _bin/knit
Browse files Browse the repository at this point in the history
  • Loading branch information
yihui committed Feb 17, 2013
1 parent 5535d56 commit 230cfa3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
9 changes: 0 additions & 9 deletions _bin/deps

This file was deleted.

9 changes: 9 additions & 0 deletions _bin/knit
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
#!/usr/bin/env Rscript

# install dependencies
for (i in setdiff(c(
'animation',
'knitr',
'hexbin'
), .packages(TRUE))) {
install.packages(i)
}

# formatR indent 2 spaces; print width 65; no progress
options(reindent.spaces = 2, KNITR_WIDTH = 65, KNITR_PROGRESS = FALSE)

Expand Down

0 comments on commit 230cfa3

Please sign in to comment.