Commit f6c43c60 authored by Marin Jankovski's avatar Marin Jankovski Committed by Mayra Cabrera

Fix a misspelling in sync-stable-branch script

parent 31861497
...@@ -7,31 +7,31 @@ set -e ...@@ -7,31 +7,31 @@ set -e
if [[ "$MERGE_TRAIN_TRIGGER_TOKEN" == '' ]] if [[ "$MERGE_TRAIN_TRIGGER_TOKEN" == '' ]]
then then
echo 'The variable MERGE_TRAIN_TRIGGER_TOKEN must be set to a non-empy value' echo 'The variable MERGE_TRAIN_TRIGGER_TOKEN must be set to a non-empty value'
exit 1 exit 1
fi fi
if [[ "$MERGE_TRAIN_TRIGGER_URL" == '' ]] if [[ "$MERGE_TRAIN_TRIGGER_URL" == '' ]]
then then
echo 'The variable MERGE_TRAIN_TRIGGER_URL must be set to a non-empy value' echo 'The variable MERGE_TRAIN_TRIGGER_URL must be set to a non-empty value'
exit 1 exit 1
fi fi
if [[ "$CI_COMMIT_REF_NAME" == '' ]] if [[ "$CI_COMMIT_REF_NAME" == '' ]]
then then
echo 'The variable CI_COMMIT_REF_NAME must be set to a non-empy value' echo 'The variable CI_COMMIT_REF_NAME must be set to a non-empty value'
exit 1 exit 1
fi fi
if [[ "$SOURCE_PROJECT" == '' ]] if [[ "$SOURCE_PROJECT" == '' ]]
then then
echo 'The variable SOURCE_PROJECT must be set to a non-empy value' echo 'The variable SOURCE_PROJECT must be set to a non-empty value'
exit 1 exit 1
fi fi
if [[ "$TARGET_PROJECT" == '' ]] if [[ "$TARGET_PROJECT" == '' ]]
then then
echo 'The variable TARGET_PROJECT must be set to a non-empy value' echo 'The variable TARGET_PROJECT must be set to a non-empty value'
exit 1 exit 1
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment