Sha256: 48580a7aedb25b98869f7b7af779fc661063c26453ede2349a9fa84a1e812c04
Contents?: true
Size: 390 Bytes
Versions: 9
Compression:
Stored size: 390 Bytes
Contents
namespace :yarn do task :install do on roles :app do execute <<-EOBLOCK curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list apt-get -qq update && apt-get install -y yarn yarn install --check-files EOBLOCK end end end
Version data entries
9 entries across 9 versions & 1 rubygems