فهرست منبع

fix: bash regex (#2858)

Aiden Cline 4 ماه پیش
والد
کامیت
edeaab321a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/opencode/src/config/markdown.ts

+ 1 - 1
packages/opencode/src/config/markdown.ts

@@ -1,6 +1,6 @@
 export namespace ConfigMarkdown {
   export const FILE_REGEX = /(?<![\w`])@(\.?[^\s`,.]*(?:\.[^\s`,.]+)*)/g
-  export const SHELL_REGEX = /`[^`]+`/g
+  export const SHELL_REGEX = /!`([^`]+)`/g
 
   export function files(template: string) {
     return Array.from(template.matchAll(FILE_REGEX))