mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
21 lines
564 B
Bash
21 lines
564 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
set -o pipefail
|
||
|
|
||
|
# => Version-v10.24.1
|
||
|
current_commit_msg=$(git show -s --format='%s' HEAD)
|
||
|
|
||
|
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
|
||
|
then
|
||
|
# filter the commit message like Version v10.24.1-beta.1
|
||
|
printf '%s\n' "Validate source maps with beta version $current_commit_msg"
|
||
|
yarn validate-source-maps
|
||
|
else
|
||
|
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping validation of beta source maps'
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
exit 0
|