diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-02-06 21:23:32 +0100 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-02-06 21:23:32 +0100 |
commit | 47a66c667c1c19de39d47b7b3421c58f4b7e323e (patch) | |
tree | f9e2bb81b7c3d5851ab446401ea45d98dfabc60c | |
parent | 9ce6e8f876442847e75664a4c8e658c49de600e1 (diff) | |
download | rumba-47a66c667c1c19de39d47b7b3421c58f4b7e323e.tar.gz rumba-47a66c667c1c19de39d47b7b3421c58f4b7e323e.zip |
irati_support: setup: change to the right directory
-rw-r--r-- | irati_support.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/irati_support.py b/irati_support.py index c2815f0..8ee5c24 100644 --- a/irati_support.py +++ b/irati_support.py @@ -39,8 +39,8 @@ class IRATIExperiment(rhumba.Experiment): cmds.append("sudo apt-get install g++ gcc " "protobuf-compiler libprotobuf-dev git --yes") cmds.append("sudo rm -rf ~/irati") - cmds.append("cd ~; git clone https://github.com/IRATI/stack") - cmds.append("sudo ./install-from-scratch") + cmds.append("cd && git clone https://github.com/IRATI/stack irati") + cmds.append("cd ~/irati && sudo ./install-from-scratch") cmds.append("sudo ipcm &> ipcm.log &") for node in self.nodes: |