Skip to content

Commit

Permalink
Small refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardKnop committed Jul 11, 2016
1 parent 030e20c commit 11145cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -46,7 +46,7 @@ You might want to create a `Postgres` database:

```
createuser --createdb recall
createdb -U area recall
createdb -U recall recall
```

Load a development configuration into `etcd`:
Expand Down
4 changes: 2 additions & 2 deletions cut-release.sh
Expand Up @@ -64,9 +64,9 @@ function git-tag() {
local -r new_version="${1}"
echo "Tagging ${new_version} at $(current-git-commit)."
if $DRY_RUN; then
echo "Dry run: would have done git tag -a -m \"Area API release ${new_version}\" ${new_version}"
echo "Dry run: would have done git tag -a -m \"API release ${new_version}\" ${new_version}"
else
git tag -a -m "Area API release ${new_version}" "${new_version}"
git tag -a -m "API release ${new_version}" "${new_version}"
fi
}

Expand Down

0 comments on commit 11145cd

Please sign in to comment.