File tree 10 files changed +45
-10
lines changed
buildpack-java/tests/java-jetty
10 files changed +45
-10
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,15 @@ All notable changes to this project will be documented in this file.
11
11
### Changed
12
12
13
13
14
+ ## [ 0.3.20] - 2016-11-13
15
+ ### Changed
16
+ - @michaelshobbs michaelshobbs new .env parser that handles spaces
17
+ - @michaelshobbs michaelshobbs change readme instructions to use github releases
18
+ - @michaelshobbs michaelshobbs Update go to version v52
19
+ - @michaelshobbs michaelshobbs Update php to version v114
20
+ - @michaelshobbs michaelshobbs Update python to version v83
21
+
22
+
14
23
## [ 0.3.19] - 2016-09-20
15
24
### Changed
16
25
- @josegonzalez Update static buildpack to v6
@@ -264,7 +273,8 @@ All notable changes to this project will be documented in this file.
264
273
- User for ` buildpack-build ` is ` $USER ` or randomized
265
274
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
266
275
267
- [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.19...HEAD
276
+ [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.20...HEAD
277
+ [ 0.3.20 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.19...v0.3.20
268
278
[ 0.3.19 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.18...v0.3.19
269
279
[ 0.3.18 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.17...v0.3.18
270
280
[ 0.3.17 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.16...v0.3.17
Original file line number Diff line number Diff line change 1
1
FROM heroku/cedar:14
2
- RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.19 /herokuish_0.3.19_linux_x86_64 .tgz \
2
+ RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.20 /herokuish_0.3.20_linux_x86_64 .tgz \
3
3
--silent -L | tar -xzC /bin
4
4
RUN /bin/herokuish buildpack install \
5
5
&& ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change 1
1
NAME = herokuish
2
2
HARDWARE = $(shell uname -m)
3
- VERSION ?= 0.3.19
3
+ VERSION ?= 0.3.20
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
18
18
For example, you can do this directly in your Dockerfiles installing into ` /bin ` as one step:
19
19
20
20
```
21
- RUN curl --silent http ://dl.gliderlabs. com/herokuish/latest/linux_x86_64 .tgz \
21
+ RUN curl --location -- silent https ://github. com/gliderlabs/ herokuish/releases/download/v0.3.20/herokuish_0.3.20_linux_x86_64 .tgz \
22
22
| tar -xzC /bin
23
23
```
24
24
Original file line number Diff line number Diff line change 1
- v44
1
+ v52
Original file line number Diff line number Diff line change
1
+ TEST1 = The big brown fox1
2
+ TEST2 = " The big brown fox2"
3
+ TEST3 = ' The big brown fox3'
4
+ export TEST4 = The big brown fox4
5
+ export TEST5 = " The big brown fox5"
6
+ export TEST6 = ' The big brown fox6'
Original file line number Diff line number Diff line change 1
- v110
1
+ v114
Original file line number Diff line number Diff line change 1
- v82
1
+ v83
Original file line number Diff line number Diff line change 1
1
2
+ _envfile-parse () {
3
+ declare desc=" Parse input into shell export commands"
4
+ local key
5
+ local value
6
+ while read line || [[ -n " $line " ]]; do
7
+ [[ " $line " =~ ^# .* ]] && continue
8
+ key= ${line%% =* }
9
+ key= ${key#* export }
10
+ value= ${line#* =}
11
+ case " $value " in
12
+ \' * |\" * )
13
+ value=${value}
14
+ ;;
15
+ * )
16
+ value=\" ${value} \"
17
+ ;;
18
+ esac
19
+ echo " export ${key} =${value} "
20
+ done <<< " $( cat) "
21
+ }
22
+
2
23
buildpack-build () {
3
24
declare desc=" Build an application using installed buildpacks"
4
25
ensure-paths
@@ -88,10 +109,9 @@ buildpack-setup() {
88
109
export CURL_CONNECT_TIMEOUT=" 30"
89
110
export CURL_TIMEOUT=" 180"
90
111
91
-
92
112
# Buildstep backwards compatibility
93
113
if [[ -f " $app_path /.env" ]]; then
94
- source " $app_path /.env"
114
+ eval $( cat " $app_path /.env" | _envfile-parse )
95
115
fi
96
116
}
97
117
Original file line number Diff line number Diff line change @@ -119,7 +119,6 @@ herokuish-test() {
119
119
echo " ::: TEST FINISHED :::"
120
120
}
121
121
122
-
123
122
main () {
124
123
set -eo pipefail; [[ " $TRACE " ]] && set -x
125
124
You can’t perform that action at this time.
0 commit comments