Skip to content

Commit 870fcb4

Browse files
author
Sauyon Lee
committedMar 18, 2021
Explicity pass working directory to index-files
1 parent 0128253 commit 870fcb4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎codeql-tools/pre-finalize.cmd

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ SETLOCAL EnableDelayedExpansion
33

44
if NOT "%CODEQL_EXTRACTOR_GO_EXTRACT_HTML%"=="no" (
55
type NUL && "%CODEQL_DIST%/codeql.exe" database index-files ^
6+
--working-dir=. ^
67
--include-extension=.htm ^
78
--include-extension=.html ^
89
--include-extension=.xhtm ^

‎codeql-tools/pre-finalize.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -eu
44

55
if [ "${CODEQL_EXTRACTOR_GO_EXTRACT_HTML:-yes}" != "no" ]; then
66
"$CODEQL_DIST/codeql" database index-files \
7+
--working-dir=. \
78
--include-extension=.htm \
89
--include-extension=.html \
910
--include-extension=.xhtm \

0 commit comments

Comments
 (0)
Please sign in to comment.