Skip to content

Commit

Permalink
add echo to identify problem
Browse files Browse the repository at this point in the history
  • Loading branch information
timur-harin committed May 26, 2024
1 parent 205bee2 commit 4b1ef06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions installs/install-pmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,14 @@ fi

pmd_version=6.55.0
cd /usr/local
echo "Installing PMD ${pmd_version}"
wget --quiet https://github.com/pmd/pmd/releases/download/pmd_releases%2F6.55.0/pmd-bin-${pmd_version}.zip
echo "Unpacking PMD ${pmd_version}"
unzip -qq pmd-bin-${pmd_version}.zip
echo "unzipped PMD ${pmd_version}"
rm pmd-bin-${pmd_version}.zip
echo "Deleting PMD ${pmd_version}"
mv pmd-bin-${pmd_version} pmd
echo "PMD installed into /usr/local/pmd"
ln -s /usr/local/pmd/bin/run.sh /usr/local/bin/pmd
echo "PMD installed into /usr/local/bin/pmd"
1 change: 1 addition & 0 deletions steps/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ install_package gawk
if "${LOCAL}/help/is-macos.sh"; then
brew install coreutils
brew install wget
brew install unzip
fi

if ! pdftotext -v >/dev/null 2>&1; then
Expand Down

0 comments on commit 4b1ef06

Please sign in to comment.