Skip to content

Commit

Permalink
Fix classpath broken after renaming (#53)
Browse files Browse the repository at this point in the history
* Fix classpath broken after renaming

* Ensure classpath is the same on all envs
  • Loading branch information
filipesperandio authored Apr 20, 2018
1 parent f43e380 commit c4ea127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/codeclimate-sonar
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@

BUILD_DIR=$(dirname $0)
APP=$(find ${BUILD_DIR}/libs -name "codeclimate-sonar-java.jar" | head -n1)
WRAPPER=$(find ${BUILD_DIR}/libs -name "sonar-wrapper*.jar" | head -n1)
WRAPPER=$(find ${BUILD_DIR}/libs -name "codeclimate-ss-analyzer-wrapper*.jar" | head -n1)
CORE=$(find ${BUILD_DIR}/libs -name "sonarlint-core*.jar" -or -name "sonarlint-client-api*.jar" | tr "\n" ":")
LIBS=$(find ${BUILD_DIR}/libs -name "*.jar" | tr "\n" ":")
LIBS=$(find ${BUILD_DIR}/libs -name "*.jar" | sort | tr "\n" ":")

CODE_DIR=$1; shift
CONFIG_FILE=$1; shift

0 comments on commit c4ea127

Please sign in to comment.