From 40ad3a1bf9457ddcaf10c8af1e77f90123b92d62 Mon Sep 17 00:00:00 2001 From: Jose Pedro Oliveira Date: Sat, 14 Sep 2013 02:21:24 +0100 Subject: [PATCH] Replaces a couple of 'sudo apt-get install -y' instances by '$install' --- util/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/install.sh b/util/install.sh index c5c3d77..fb53869 100755 --- a/util/install.sh +++ b/util/install.sh @@ -269,12 +269,12 @@ function wireshark { return fi - sudo apt-get install -y wireshark tshark libgtk2.0-dev + $install wireshark tshark libgtk2.0-dev if [ "$DIST" = "Ubuntu" ] && [ "$RELEASE" != "10.04" ]; then # Install newer version - sudo apt-get install -y scons mercurial libglib2.0-dev - sudo apt-get install -y libwiretap-dev libwireshark-dev + $install scons mercurial libglib2.0-dev + $install libwiretap-dev libwireshark-dev cd $BUILD_DIR hg clone https://bitbucket.org/barnstorm/of-dissector if [[ -z "$WS_DISSECTOR_REV" ]]; then