Skip to content

Commit c0a9da5

Browse files
committed
output to builds/ dir to match jruby builder
1 parent 5f5d2ef commit c0a9da5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cache
33
Gemfile
44
Gemfile.lock
55
LICENSE.md
6-
output
6+
builds
77
Rakefile
88
README.md
99
rubies

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ task :upload, [:version, :stack] do |t, args|
2323
s3 = AWS::S3.new
2424
bucket = s3.buckets[bucket_name]
2525
object = bucket.objects[s3_key]
26-
output_file = "output/#{args[:stack]}/#{filename}"
26+
output_file = "builds/#{args[:stack]}/#{filename}"
2727

2828
puts "Uploading #{output_file} to s3://#{bucket_name}/#{s3_key}"
2929
object.write(file: output_file)

rubies/common.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OUTPUT_DIR=${OUTPUT_DIR:-`pwd`/output}
1+
OUTPUT_DIR=${OUTPUT_DIR:-`pwd`/builds}
22
CACHE_DIR=${CACHE_DIR:-`pwd`/cache}
33

44
echo "OUTPUT DIR: $OUTPUT_DIR"

0 commit comments

Comments
 (0)