Skip to content

Commit 57de072

Browse files
committed
build: update recipe
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent fcd6d80 commit 57de072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/make/lib/ls/pkgs/lib.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ list-lib-pkgs:
7474
#/
7575
list-random-lib-pkgs:
7676
$(QUIET) if command -v shuf > /dev/null; then \
77-
$(MAKE) list-lib-pkgs | shuf -n $(RANDOM_SELECTION_SIZE) ; \
77+
$(MAKE) -f $(this_file) list-lib-pkgs | shuf -n $(RANDOM_SELECTION_SIZE) ; \
7878
else \
79-
$(MAKE) list-lib-pkgs | sort -R | head -n $(RANDOM_SELECTION_SIZE) ; \
79+
$(MAKE) -f $(this_file) list-lib-pkgs | sort -R | head -n $(RANDOM_SELECTION_SIZE) ; \
8080
fi
8181

8282
.PHONY: list-random-lib-pkgs

0 commit comments

Comments
 (0)