File tree 9 files changed +22
-9
lines changed
9 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,18 @@ All notable changes to this project will be documented in this file.
11
11
### Changed
12
12
13
13
14
+ ## [ 0.3.15] - 2016-07-14
15
+ ### Fixed
16
+ - @joshmanders only delete $app_path if $import_path is not empty. fixes #111
17
+
18
+ ### Changed
19
+ - @michaelshobbs Update go to version v42
20
+ - @michaelshobbs Update nodejs to version v91
21
+ - @michaelshobbs Update php to version v108
22
+ - @michaelshobbs Update python to version v81
23
+ - @michaelshobbs Update scala to version v71
24
+
25
+
14
26
## [ 0.3.14] - 2016-06-27
15
27
### Added
16
28
- @michaelshobbs implement heroku-like buildpack detect order and output. closes #133
@@ -225,7 +237,8 @@ All notable changes to this project will be documented in this file.
225
237
- User for ` buildpack-build ` is ` $USER ` or randomized
226
238
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
227
239
228
- [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.14...HEAD
240
+ [ unreleased ] : https://github.com/gliderlabs/herokuish/compare/v0.3.15...HEAD
241
+ [ 0.3.15 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.14...v0.3.15
229
242
[ 0.3.14 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.13...v0.3.14
230
243
[ 0.3.13 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.12...v0.3.13
231
244
[ 0.3.12 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.11...v0.3.12
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.14 /herokuish_0.3.14_linux_x86_64 .tgz \
2
+ RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.15 /herokuish_0.3.15_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.14
3
+ VERSION ?= 0.3.15
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change 1
- v41
1
+ v42
Original file line number Diff line number Diff line change 1
- v90
1
+ v91
Original file line number Diff line number Diff line change 1
- v107
1
+ v108
Original file line number Diff line number Diff line change 1
- v80
1
+ v81
Original file line number Diff line number Diff line change 1
- v70
1
+ v71
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ herokuish-test() {
123
123
main () {
124
124
set -eo pipefail; [[ " $TRACE " ]] && set -x
125
125
126
- if [[ -d " $import_path " ]]; then
126
+ if [[ -d " $import_path " ]] && [[ -n " $( ls -A $import_path ) " ]] ; then
127
127
rm -rf " $app_path " && cp -r " $import_path " " $app_path "
128
128
fi
129
129
You can’t perform that action at this time.
0 commit comments