ci: remove unused variable from `.circleci/env.sh` (#34384)

Since #32537, the `.circleci/get-commit-range.js` script is no longer
used in `.circleci/env.sh`. This commit removes the now unused local
variable to the script's path.

PR Close #34384
This commit is contained in:
George Kalpakas 2019-12-14 16:34:48 +02:00 committed by Kara Erickson
parent f79110c637
commit fac997c53b
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@
# Variables
readonly projectDir=$(realpath "$(dirname ${BASH_SOURCE[0]})/..")
readonly envHelpersPath="$projectDir/.circleci/env-helpers.inc.sh";
readonly getCommitRangePath="$projectDir/.circleci/get-commit-range.js";
# Load helpers and make them available everywhere (through `$BASH_ENV`).
source $envHelpersPath;