Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1ffbc85

Browse files
authoredMar 16, 2022
Merge pull request #2138 from eviweb/fix-projects-plugin-regression
fix projects plugin regression
2 parents 60c4c0b + 088212f commit 1ffbc85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎plugins/available/projects.plugin.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function pj() {
2121
# with the same name in project directories
2222
IFS=':' read -ra dests <<< "${BASH_IT_PROJECT_PATHS?${FUNCNAME[0]}: project working folders must be configured}"
2323
for d in "${!dests[@]}"; do
24-
if [[ ! -d "${dests[d]}" ]]; then
24+
if [[ ! -d "${dests[d]}/${proj}" ]]; then
2525
unset 'dests[d]'
2626
fi
2727
done

0 commit comments

Comments
 (0)
Please sign in to comment.