Update get-changed-paths.sh

This commit is contained in:
Tonye Jack 2022-11-23 19:46:28 -07:00 committed by GitHub
parent 3d46931839
commit 63f38f9f41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,7 @@ function get_dirname_max_depth() {
local depth="2"
while [ "$depth" -le "$max_depth" ]; do
current_dir="${dirs[2]}"
output="$output/${dirs[${depth}]}"
depth=$((depth + 1))
done