Skip to content

Commit

Permalink
Adding Snyk CLI to standard tooling installation (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhitestratiform authored Aug 8, 2024
1 parent d83c623 commit 714f16b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mdct-setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set -e

# Script version
SCRIPT_VERSION="1.0.3"
SCRIPT_VERSION="1.0.4"

# Define the clone directory and version file
clone_dir="$HOME/Projects"
Expand Down Expand Up @@ -290,6 +290,12 @@ if ! which op > /dev/null ; then
brew install 1password-cli
fi

# Install snyk cli
if ! which snyk > /dev/null ; then
echo "brew installing Snyk CLI"
brew install snyk-cli
fi

# Install Kion except on CI.
if [ "$CI" != "true" ]; then
# Install Kion
Expand Down

0 comments on commit 714f16b

Please sign in to comment.