File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,18 @@ jobs:
128128 run : echo "⏭️ CodeQL pack publishing disabled via workflow input"
129129
130130 - name : CodeQL - Bundle CodeQL packs
131+ env :
132+ PUBLISHABLE_PACKS_LIST : |
133+ javascript/frameworks/cap/src
134+ javascript/frameworks/cap/ext
135+ javascript/frameworks/cap/lib
136+ javascript/frameworks/ui5/src
137+ javascript/frameworks/ui5/ext
138+ javascript/frameworks/ui5/lib
139+ javascript/frameworks/xsjs/src
140+ javascript/frameworks/xsjs/ext
141+ javascript/frameworks/xsjs/lib
142+ javascript/heuristic-models/ext
131143 run : |
132144 mkdir -p dist-packs
133145
Original file line number Diff line number Diff line change @@ -266,9 +266,9 @@ update_internal_deps() {
266266 local old_version=" $2 "
267267 local new_version=" $3 "
268268
269- # Escape regex metacharacters in the old version (e.g., '. ' -> '\.')
269+ # Escape dots in the old version (e.g., '2.3.0 ' -> '2\.3\.0') for use in sed regex
270270 local escaped_old_version
271- escaped_old_version=$( printf ' %s' " ${old_version} " | sed ' s/[.\*\[\^\$] /\\& /g' )
271+ escaped_old_version=$( printf ' %s' " ${old_version} " | sed ' s/\. /\\. /g' )
272272
273273 for pack_name in " ${INTERNAL_PACKS[@]} " ; do
274274 # Update quoted caret-prefixed versions: "^X.Y.Z"
You can’t perform that action at this time.
0 commit comments