Skip to main content
Sign in
Snippets Groups Projects
Commit 31bf9d85 authored by Richard Hartmann's avatar Richard Hartmann
Browse files

Merge pull request #98 from dottedmag/fix--echo-n-os-x

Use printf, not echo -n to print messages without newline
parents c0ab51a5 2b7348c5
Branches
Tags
No related merge requests found
...@@ -247,7 +247,7 @@ list_tracked_by() { ...@@ -247,7 +247,7 @@ list_tracked_by() {
pull() { pull() {
hook pre-pull hook pre-pull
for VCSH_REPO_NAME in $(list); do for VCSH_REPO_NAME in $(list); do
echo -n "$VCSH_REPO_NAME: " printf "$VCSH_REPO_NAME: "
export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git"
use use
git pull git pull
...@@ -259,7 +259,7 @@ pull() { ...@@ -259,7 +259,7 @@ pull() {
push() { push() {
hook pre-push hook pre-push
for VCSH_REPO_NAME in $(list); do for VCSH_REPO_NAME in $(list); do
echo -n "$VCSH_REPO_NAME: " printf "$VCSH_REPO_NAME: "
export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git" export GIT_DIR="$VCSH_REPO_D/$VCSH_REPO_NAME.git"
use use
git push git push
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment