Browse Source

check-pr: use better regex (#11525)

* check-pr: more descriptive message

* check-pr: better regex

* Update check-pr.sh
Sebastiaan Speck 1 year ago
parent
commit
6edd7d1854
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/check-pr.sh

+ 1 - 1
scripts/check-pr.sh

@@ -64,7 +64,7 @@ function check_missing_english_page() {
 function check_outdated_page() {
   local page=$1
   local english_page="pages/${page#pages*\/}"
-  local command_regex='^`.*`$'
+  local command_regex='^`[^`]\+`$'
 
   if [[ "$page" = "$english_page" ]] || [[ ! -f "$english_page" ]]; then
     return 1