Skip to content

Commit f1510d1

Browse files
committed
reduce indent to original
1 parent 88c9d86 commit f1510d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/common.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
error() {
2-
echo " ! $*" >&2
2+
echo " ! $*" >&2
33
exit 1
44
}
55

66
status() {
7-
echo "-------> $*"
7+
echo "-----> $*"
88
}
99

1010
protip() {
@@ -23,7 +23,7 @@ protip() {
2323
# so you get updates while the command runs and dont wait for the end
2424
# e.g. npm install | indent
2525
indent() {
26-
c='s/^/ /'
26+
c='s/^/ /'
2727
case $(uname) in
2828
Darwin) sed -l "$c";; # mac/bsd sed: -l buffers on line boundaries
2929
*) sed -u "$c";; # unix/gnu sed: -u unbuffered (arbitrary) chunks of data

compile-extensions/lib/common

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
echo "-------> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"
1+
echo "-----> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"
22

33
install_python() {
44
cache=$(cd "$1/" && pwd)

0 commit comments

Comments
 (0)