Browse Source

wireshark: add initial gimme for wireshark

Kyle P Davis 9 years ago
parent
commit
1024dc56df
1 changed files with 10 additions and 0 deletions
  1. 10 0
      gimmes/wireshark

+ 10 - 0
gimmes/wireshark

@@ -0,0 +1,10 @@
+#!/bin/bash
+set -o errexit -o pipefail
+
+if ! has wireshark; then
+	if [[ "$OS" = "Darwin" ]]; then
+		brew cask install wireshark
+	else
+		gimme_pkg wireshark
+	fi
+fi