File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ find . -name 'qlpack.yml' | grep -v './codeql_modules' | grep -v './scripts' | x
14
14
15
15
# update the documentation.
16
16
17
- find docs -name ' user_manual.md' | xargs sed -i " s/code-scanning-cpp-query-pack-.*\.zip\` /code-scanning-cpp-query-pack-${1} .zip\` /"
18
- find docs -name ' user_manual.md' | xargs sed -i " s/supported_rules_list_.*\.csv\` /supported_rules_list_${1} .csv\` /"
19
- find docs -name ' user_manual.md' | xargs sed -i " s/supported_rules_list_.*\.md\` /supported_rules_list_${1} .md\` /"
20
- find docs -name ' user_manual.md' | xargs sed -i " s/user_manual_.*\.md\` /user_manual_${1} .md\` /"
21
- find docs -name ' user_manual.md' | xargs sed -i " s/This user manual documents release \` .*\` of/This user manual documents release \` ${1} \` of/"
17
+ find docs -name ' user_manual.md' -print0 | xargs -0 sed -i " s/code-scanning-cpp-query-pack-.*\.zip\` /code-scanning-cpp-query-pack-${1} .zip\` /"
18
+ find docs -name ' user_manual.md' -print0 | xargs -0 sed -i " s/supported_rules_list_.*\.csv\` /supported_rules_list_${1} .csv\` /"
19
+ find docs -name ' user_manual.md' -print0 | xargs -0 sed -i " s/supported_rules_list_.*\.md\` /supported_rules_list_${1} .md\` /"
20
+ find docs -name ' user_manual.md' -print0 | xargs -0 sed -i " s/user_manual_.*\.md\` /user_manual_${1} .md\` /"
21
+ find docs -name ' user_manual.md' -print0 | xargs -0 sed -i " s/This user manual documents release \` .*\` of/This user manual documents release \` ${1} \` of/"
22
22
23
23
echo " Done."
You can’t perform that action at this time.
0 commit comments