Skip to content

Commit

Permalink
added bash -ex to install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
f0rki committed Apr 5, 2017
1 parent 9aab94d commit 3e4e93e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion miasm/install
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash -ex

git clone --depth 1 https://github.com/serpilliere/elfesteem.git
git clone --depth 1 https://github.com/cea-sec/miasm.git
Expand Down
2 changes: 1 addition & 1 deletion miasm/install-root-debian
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -ex

apt-get install -y zlib zlib-dev libstdc++6-4.9-dev libstdc++6 \
llvm-3.5 llvm--3.5-dev libedit libedit-dev
6 changes: 4 additions & 2 deletions miasm/install-root-fedora
@@ -1,2 +1,4 @@
#!/bin/bash
dnf install -y zlib zlib-devel libstdc++-devel libstdc++ libstdc++-static llvm-3.5.0 llvm-devel-3.5.0 libedit libedit-devel
#!/bin/bash -ex

dnf install -y zlib zlib-devel libstdc++-devel libstdc++ libstdc++-static \
llvm-3.5.0 llvm-devel-3.5.0 libedit libedit-devel
2 changes: 1 addition & 1 deletion rr/install
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash -ex

git clone https://github.com/mozilla/rr.git
mkdir build
Expand Down
3 changes: 2 additions & 1 deletion rr/install-root-archlinux
@@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash -ex

pacman -Syu --noconfirm --needed \
ccache cmake gdb python2-pexpect ninja zlib
./configure-system
3 changes: 2 additions & 1 deletion rr/install-root-debian
@@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash -ex

apt-get install -y ccache cmake make g++-multilib gdb \
pkg-config libz-dev realpath python-pexpect manpages-dev git zlib1g-dev \
ninja-build
Expand Down
3 changes: 2 additions & 1 deletion rr/install-root-fedora
@@ -1,4 +1,5 @@
#!/bin/bash -e
#!/bin/bash -ex

dnf install -y \
ccache cmake make gcc gcc-c++ gdb \
glibc-devel glibc-devel.i686 libstdc++-devel libstdc++-devel.i686 zlib-devel \
Expand Down

0 comments on commit 3e4e93e

Please sign in to comment.