7 lines
220 B
Bash
Executable file
7 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
# Run this as before_script in the travis file
|
|
apt-get update && apt-get install -y \
|
|
libfcgi-dev
|
|
|
|
git clone https://github.com/olofhagsand/cligen.git
|
|
(cd cligen && ./configure && make && sudo make install)
|