Skip to content

Commit

Permalink
Fix missing data directory during build (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
kke authored and jakolehm committed Nov 22, 2018
1 parent 768d296 commit e384015
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions build/drone/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ curl -sL https://dl.bintray.com/kontena/ruby-packer/0.5.0-dev/rubyc-linux-amd64.
chmod +x /usr/local/bin/rubyc

# Download updated SSL certs
mkdir -p data
curl -sL https://curl.haxx.se/ca/cacert.pem > data/cacert.pem

gem install bundler
Expand Down
1 change: 1 addition & 0 deletions build/drone/ubuntu_oss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ curl -sL https://dl.bintray.com/kontena/ruby-packer/0.5.0-dev/rubyc-linux-amd64.
chmod +x /usr/local/bin/rubyc

# Download updated SSL certs
mkdir -p data
curl -sL https://curl.haxx.se/ca/cacert.pem > data/cacert.pem

gem install bundler
Expand Down
1 change: 1 addition & 0 deletions build/travis/macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ curl -sL https://dl.bintray.com/kontena/ruby-packer/0.5.0-dev/rubyc-darwin-amd64
chmod +x /usr/local/bin/rubyc

# Download updated SSL certs
mkdir -p data
curl -sL https://curl.haxx.se/ca/cacert.pem > data/cacert.pem

version=${TRAVIS_TAG#"v"}
Expand Down
1 change: 1 addition & 0 deletions build/travis/macos_oss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ curl -sL https://curl.haxx.se/ca/cacert.pem > data/cacert.pem
chmod +x /usr/local/bin/rubyc

# Download updated SSL certs
mkdir -p data
curl -sL https://curl.haxx.se/ca/cacert.pem > data/cacert.pem

version=${TRAVIS_TAG#"v"}
Expand Down

0 comments on commit e384015

Please sign in to comment.