From fac997c53ba59efd3e6739e9c56b1951ad35ff48 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Sat, 14 Dec 2019 16:34:48 +0200 Subject: [PATCH] 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 --- .circleci/env.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/env.sh b/.circleci/env.sh index ef161d0245..f73ea88521 100755 --- a/.circleci/env.sh +++ b/.circleci/env.sh @@ -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;