Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f69c5dc commit 0d77f49Copy full SHA for 0d77f49
1 file changed
.github/workflows/build.yml
@@ -82,7 +82,7 @@ jobs:
82
run: |
83
codeql/codeql pack create ql/src --output target/packs
84
PACK_FOLDER=$(readlink -f target/packs/github/codeql-ruby/*)
85
- (cd ql/src; find queries \( -name '*.qhelp' -o -name '*.rb' -o -name '*.erb' \) -exec cp "{}" "${PACK_FOLDER}/{}" \;)
+ (cd ql/src; find queries \( -name '*.qhelp' -o -name '*.rb' -o -name '*.erb' \) -exec bash -c 'mkdir -p "'"${PACK_FOLDER}"'/$(dirname "{}")"' \; -exec cp "{}" "${PACK_FOLDER}/{}" \;)
86
- name: Compile with previous CodeQL versions
87
88
for version in $(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | sort --version-sort | tail -3 | head -2); do
0 commit comments