Skip to content

Commit 1430d38

Browse files
Amin Jamsjtarchie
Amin Jams
authored andcommitted
Removing the source from binary-builder [#101447594]
Signed-off-by: JT Archie <[email protected]>
1 parent 36b6062 commit 1430d38

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

templates/httpd_blueprint.sh.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
STAGING_DIR="/tmp/staged/app"
22
INSTALLATION_DIR=$1
33
BINARY_VERSION=<%= binary_version %>
4-
DEST_DIR=$INSTALLATION_DIR/httpd-${BINARY_VERSION}
4+
DEST_DIR=`pwd`/httpd-${BINARY_VERSION}
55
FILENAME=httpd-${BINARY_VERSION}.tar.bz2
66
TAR_URL=https://archive.apache.org/dist/httpd//$FILENAME
77

templates/jruby_blueprint.sh.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
INSTALLATION_DIR=$1
22
BINARY_VERSION=<%= jruby_version %>
3-
DEST_DIR=$INSTALLATION_DIR/jruby-${BINARY_VERSION}
3+
DEST_DIR=`pwd`/jruby-${BINARY_VERSION}
44
FILENAME=jruby-src-${BINARY_VERSION}.tar.gz
55
TAR_URL=https://s3.amazonaws.com/jruby.org/downloads/<%= jruby_version %>/$FILENAME
66

templates/php_blueprint.sh.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ MODULES[<%= extension.name %>]="<%= extension.version %>"
3434
# location where files are built
3535
FILENAME=php-$PHP_VERSION.tar.bz2
3636
TAR_URL=https://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror
37-
DEST_DIR=$INSTALLATION_DIR/build
37+
DEST_DIR=`pwd`/build
3838
BUILD_DIR=$DEST_DIR
3939

4040
template_steps() {

templates/ruby_blueprint.sh.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
INSTALLATION_DIR=$1
22
BINARY_VERSION=<%= binary_version %>
3-
DEST_DIR=$INSTALLATION_DIR/ruby-${BINARY_VERSION}
3+
DEST_DIR=`pwd`/ruby-${BINARY_VERSION}
44
FILENAME=ruby-${BINARY_VERSION}.tar.gz
55
TAR_URL=https://cache.ruby-lang.org/pub/ruby/<%= minor_version %>/$FILENAME
66
PREFIX='/app/vendor/ruby-<%= patchless_version %>'

0 commit comments

Comments
 (0)