#!/bin/bash
# sys/tool/svn - Subversion Support

set -e


######
# Native Dependencies

sys_tool_svn_client_packages=( subversion )


######
# Subversion Support

# svn_run() - Runs ``svn`` with the given arguments ($@).
svn_run() {
	run svn "$@"
}

# svn_checkout() - Runs ``svn checkout`` with the given arguments ($@).
svn_checkout() {
	min_args 1 "$@"
	svn_run checkout "$@"
}

svn_clone() { svn_checkout "$@"; }

svn_update() { svn_run update "$@"; }

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:36:16 PDT 2017 by mcsh d14 v0.23.0.