We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf18024 commit b6912abCopy full SHA for b6912ab
1 file changed
scripts/bash/common.sh
@@ -200,8 +200,8 @@ feature_json_matches_feature_dir() {
200
[[ -d "$_fd" ]] || return 1
201
202
local norm_json norm_active
203
- norm_json="$(cd -- "$_fd" 2>/dev/null && pwd)" || return 1
204
- norm_active="$(cd -- "$active_feature_dir" 2>/dev/null && pwd)" || return 1
+ norm_json="$(cd -- "$_fd" 2>/dev/null && pwd -P)" || return 1
+ norm_active="$(cd -- "$active_feature_dir" 2>/dev/null && pwd -P)" || return 1
205
206
[[ "$norm_json" == "$norm_active" ]]
207
}
0 commit comments