File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -121,8 +121,8 @@ echo_package_info() {
121
121
if [ " $flag_fetch " = yes ]; then
122
122
local git_output=
123
123
if ! git_output=" $( git -C " $pkg_path " fetch 2>&1 ) " ; then
124
- printf " -- > %s\n" " Git output:"
125
- printf " -- > %s\n" " ${git_output% .} "
124
+ printf " -> %s\n" " Git output:"
125
+ printf " -> %s\n" " ${git_output% .} "
126
126
fi
127
127
fi
128
128
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ do-plumbing-clone() {
30
30
local git_output=
31
31
if ! git_output=" $( git clone " ${git_args[@]} " 2>&1 ) " ; then
32
32
log.error " Could not clone repository"
33
- printf " -- > %s\n" " Git output:"
34
- printf " -- > %s\n" " ${git_output% .} "
33
+ printf " -> %s\n" " Git output:"
34
+ printf " -> %s\n" " ${git_output% .} "
35
35
exit 1
36
36
fi
37
37
@@ -46,9 +46,9 @@ do-plumbing-clone() {
46
46
printf " %s\n" " -> Reseting to revision '$ref '"
47
47
else
48
48
log.error " Could not reset to particular revision '$ref '"
49
- printf " -- > %s\n" " Is '$ref ' actually in '$id '?"
50
- printf " -- > %s\n" " Git output:"
51
- printf " -- > %s\n" " ${git_output% .} "
49
+ printf " -> %s\n" " Is '$ref ' actually in '$id '?"
50
+ printf " -> %s\n" " Git output:"
51
+ printf " -> %s\n" " ${git_output% .} "
52
52
exit 1
53
53
fi
54
54
Original file line number Diff line number Diff line change @@ -115,8 +115,8 @@ do_actual_upgrade() {
115
115
local git_output=
116
116
if ! git_output=" $( git -C " $BPM_PACKAGES_PATH /$id " pull 2>&1 ) " ; then
117
117
log.error " Could not update Git repository"
118
- printf " -- > %s\n" " Git output:"
119
- printf " -- > %s\n" " ${git_output% .} "
118
+ printf " -> %s\n" " Git output:"
119
+ printf " -> %s\n" " ${git_output% .} "
120
120
exit 1
121
121
fi
122
122
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ ensure.package_exists() {
37
37
38
38
if [ ! -d " $BPM_PACKAGES_PATH /$id " ]; then
39
39
log.error " Package '$id ' does not exist"
40
- printf " -- > %s" " '$BPM_PACKAGES_PATH /$id '"
40
+ printf " -> %s" " '$BPM_PACKAGES_PATH /$id '"
41
41
exit 1
42
42
fi
43
43
}
You can’t perform that action at this time.
0 commit comments