Skip to content

Commit a50f280

Browse files
committed
Fix comparing any string error
1 parent c715d22 commit a50f280

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.azure-pipelines/check-dirty-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ steps:
33
. functions.sh
44
SONIC_VERSION=$(sonic_get_version)
55
echo "SONIC_VERSION=$SONIC_VERSION"
6-
if [ "$SONIC_VERSION" == *dirty* ]; then
6+
if [[ "$SONIC_VERSION" == *dirty* ]]; then
77
# Print the detail dirty info
88
git status --untracked-files=no -s --ignore-submodules
99

0 commit comments

Comments
 (0)