Skip to content

Commit

Permalink
reduce indent to original
Browse files Browse the repository at this point in the history
  • Loading branch information
drnic committed Dec 8, 2015
1 parent 88c9d86 commit f1510d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bin/common.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
error() {
echo " ! $*" >&2
echo " ! $*" >&2
exit 1
}

status() {
echo "-------> $*"
echo "-----> $*"
}

protip() {
Expand All @@ -23,7 +23,7 @@ protip() {
# so you get updates while the command runs and dont wait for the end
# e.g. npm install | indent
indent() {
c='s/^/ /'
c='s/^/ /'
case $(uname) in
Darwin) sed -l "$c";; # mac/bsd sed: -l buffers on line boundaries
*) sed -u "$c";; # unix/gnu sed: -u unbuffered (arbitrary) chunks of data
Expand Down
2 changes: 1 addition & 1 deletion compile-extensions/lib/common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
echo "-------> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"
echo "-----> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"

install_python() {
cache=$(cd "$1/" && pwd)
Expand Down

0 comments on commit f1510d1

Please sign in to comment.