Update dotify-version and dotify-help commands

This commit is contained in:
2013-06-27 00:05:01 +02:00
parent f6747efe1c
commit 4568fe2d41
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
dotify-help() { dotify-help() {
echo "dotify $(dotify-version)" echo "$(dotify-print-version)"
echo "usage: dotify <command> [<args>]"
} }

View File

@@ -1,3 +1,7 @@
dotify-version() { dotify-version() {
echo "0.0.1" echo "0.0.1"
} }
dotify-print-version() {
echo "dotify $(dotify-version)"
}