reql 0.0.9

A native RethinkDB driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# Run in a subshell to maintain the current directory
(
	# Go to top level directory
	cd "$(dirname "$0")"

	# Make sure the `docs-origin` remote is defined
	git remote add docs-origin https://github.com/rethinkdb-rs/docs.git &>/dev/null

	# Pull the latest docs
	git subtree pull --prefix build/docs docs-origin 1.0.x
)