mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
4ecc88292a
Add a separate vagrant vm to run fpm since the centos 5 one is too old and then use it to produce deb and rpm files.
8 lines
159 B
Bash
8 lines
159 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Installs dependencies for running fpm
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y ruby-dev gcc make zip unzip rpm
|
|
sudo gem install fpm
|