Fix: set pid correctly on FileStats init
[deliverable/lttng-analyses.git] / install.sh
1 #!/bin/sh
2
3 set -e
4
5 cd linuxautomaton
6 ./setup.py install
7 cd ..
8
9 cd lttnganalyses
10 ./setup.py install
11 cd ..
12
13 cd lttnganalysescli
14 ./setup.py install
15 cd ..
16
17 echo
18 echo -n "Install lttng-analyses-record and lttng-track-process in /usr/local/bin/ ? [Y/n] "
19 read -n 1 a
20 echo
21 if test "$a" = 'y' -o "$a" = 'Y' -o "$a" = ''; then
22 install lttng-analyses-record /usr/local/bin/lttng-analyses-record
23 install lttng-track-process /usr/local/bin/lttng-track-process
24 fi
This page took 0.035793 seconds and 5 git commands to generate.