We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c9d86 commit f1510d1Copy full SHA for f1510d1
bin/common.sh
@@ -1,10 +1,10 @@
1
error() {
2
- echo " ! $*" >&2
+ echo " ! $*" >&2
3
exit 1
4
}
5
6
status() {
7
- echo "-------> $*"
+ echo "-----> $*"
8
9
10
protip() {
@@ -23,7 +23,7 @@ protip() {
23
# so you get updates while the command runs and dont wait for the end
24
# e.g. npm install | indent
25
indent() {
26
- c='s/^/ /'
+ c='s/^/ /'
27
case $(uname) in
28
Darwin) sed -l "$c";; # mac/bsd sed: -l buffers on line boundaries
29
*) sed -u "$c";; # unix/gnu sed: -u unbuffered (arbitrary) chunks of data
compile-extensions/lib/common
@@ -1,4 +1,4 @@
-echo "-------> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"
+echo "-----> Buildpack version $(cat $BUILDPACK_PATH/VERSION)"
install_python() {
cache=$(cd "$1/" && pwd)
0 commit comments