diff --git a/packages/git2r/install b/packages/git2r/install new file mode 100644 index 0000000..434efbd --- /dev/null +++ b/packages/git2r/install @@ -0,0 +1,6 @@ +#!/bin/bash + +set -x +set -e +sudo apt-get update -y +sudo apt-get install -y libssh2-1 \ No newline at end of file diff --git a/packages/git2r/test.R b/packages/git2r/test.R new file mode 100644 index 0000000..5496098 --- /dev/null +++ b/packages/git2r/test.R @@ -0,0 +1,6 @@ +install.packages("git2r") +library(git2r) +path <- tempfile(pattern="git2r-") +dir.create(path) +repo <- init(path) +print(config(repo)) \ No newline at end of file