diff options
author | AlexSm <alex@ydb.tech> | 2024-02-09 17:13:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 17:13:21 +0100 |
commit | 25f7c52ffd2c252f0675c42e16d428f259627b7e (patch) | |
tree | c8ed8c9135fc3eca6aa30cee2db4613b445c18ed | |
parent | 0eaa5f79df5eb0b368f46d11b7c7c844b396a4e4 (diff) | |
download | ydb-25f7c52ffd2c252f0675c42e16d428f259627b7e.tar.gz |
Update sync_cmakebuild.yml (#1776)
-rw-r--r-- | .github/workflows/sync_cmakebuild.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/sync_cmakebuild.yml b/.github/workflows/sync_cmakebuild.yml index ae227c2020..d1ccd49917 100644 --- a/.github/workflows/sync_cmakebuild.yml +++ b/.github/workflows/sync_cmakebuild.yml @@ -19,7 +19,7 @@ jobs: echo "Main sha: ${mainsha}" lastsha=$(curl -s https://raw.githubusercontent.com/$REPO/cmakebuild/ydb/ci/cmakegen.txt) echo "Last sha: ${lastsha}" - if [ ${mainsha} == ${lastsha} ];then + if [ "${mainsha}" == "${lastsha}" ];then echo "No new commits on the main branch to merge, exiting" exit 0 fi |