File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
if exist vendor\modules.txt (
3
- type %CODEQL_EXTRACTOR_GO_ROOT% \tools\baseline-config-vendor.json
3
+ type " %CODEQL_EXTRACTOR_GO_ROOT% \tools\baseline-config-vendor.json"
4
4
) else (
5
- type %CODEQL_EXTRACTOR_GO_ROOT% \tools\baseline-config-empty.json
5
+ type " %CODEQL_EXTRACTOR_GO_ROOT% \tools\baseline-config-empty.json"
6
6
)
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
3
if [ -f vendor/modules.txt ]; then
4
- cat $CODEQL_EXTRACTOR_GO_ROOT /tools/baseline-config-vendor.json
4
+ cat " $CODEQL_EXTRACTOR_GO_ROOT /tools/baseline-config-vendor.json"
5
5
else
6
- cat $CODEQL_EXTRACTOR_GO_ROOT /tools/baseline-config-empty.json
6
+ cat " $CODEQL_EXTRACTOR_GO_ROOT /tools/baseline-config-empty.json"
7
7
fi
You can’t perform that action at this time.
0 commit comments