1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-07 23:53:41 +02:00

check-pr: use better regex (#11525)

* check-pr: more descriptive message

* check-pr: better regex

* Update check-pr.sh
This commit is contained in:
Sebastiaan Speck 2023-11-17 18:45:25 +01:00 committed by GitHub
parent 71a07e70c9
commit 6edd7d1854
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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