This commit is contained in:
Thomas Levine 2016-04-04 01:22:05 +00:00
parent a9e0f856fb
commit db3dd1c662
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ Urchin is contained in a single file, so you can install it by copying it to a
directory in your `PATH`. For example, you can run the following as root.
cd /usr/local/bin
wget https://raw.githubusercontent.com/tlevine/urchin/v0.1.0-rc2/urchin
wget https://raw.githubusercontent.com/tlevine/urchin/v0.1.0-rc3/urchin
chmod +x urchin
Urchin can be installed with npm too.

4
urchin
View File

@ -188,8 +188,8 @@ recurse() {
if test -f setup_dir; then
if $print_debug; then
echo Sourcing "${PWD}/setup_dir"
. ./setup_dir
fi
. ./setup_dir
fi
for test in *; do
@ -268,8 +268,8 @@ recurse() {
if test -f teardown; then
if $print_debug; then
echo Sourcing "${PWD}/teardown"
. ./teardown
fi
. ./teardown
fi
if [ "${exit_code}" -eq 0 ]; then