File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ install_framework() {
9393
9494 # Find all qlpack.yml files under this framework and install their packs
9595 # Exclude .codeql cache directories which contain cached pack dependencies by pruning them
96- find " ${REPO_ROOT} /${framework_path} " -name .codeql -type d -prune -o -name " qlpack.yml" -type f -print | sort | while read -r qlpack_file; do
96+ find " ${REPO_ROOT} /${framework_path} " -name ' .codeql' -type d -prune -o -name ' qlpack.yml' -type f -print | sort | while read -r qlpack_file; do
9797 local pack_dir
9898 pack_dir=$( dirname " ${qlpack_file} " )
9999 # Use relative path for cleaner output
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ upgrade_framework() {
9393
9494 # Find all qlpack.yml files under this framework and upgrade their packs
9595 # Exclude .codeql cache directories which contain cached pack dependencies by pruning them
96- find " ${REPO_ROOT} /${framework_path} " -path ' */ .codeql' -prune -o -name ' qlpack.yml' -type f -print | sort | while read -r qlpack_file; do
96+ find " ${REPO_ROOT} /${framework_path} " -name ' .codeql' -type d -prune -o -name ' qlpack.yml' -type f -print | sort | while read -r qlpack_file; do
9797 local pack_dir
9898 pack_dir=$( dirname " ${qlpack_file} " )
9999 # Use relative path for cleaner output
You can’t perform that action at this time.
0 commit comments