Skip to content

Commit

Permalink
try 3 to fix set platform
Browse files Browse the repository at this point in the history
Ifs
  • Loading branch information
damies13 committed Feb 14, 2024
1 parent e45bb7c commit b655edb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Regression/Manager/GUI_Common.robot
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ Set Platform
Log ${OPTIONS}[include][0]
${ostag}= Set Variable ${OPTIONS}[include][0]

IF ${ostag} == macos-latest
IF "${ostag}" == "macos-latest"
Set Suite Variable ${platform} macos
END
IF ${ostag} == windows-latest
IF "${ostag}" == "windows-latest"
Set Suite Variable ${platform} windows
END
IF ${ostag} == ubuntu-latest
IF "${ostag}" == "ubuntu-latest"
Set Suite Variable ${platform} ubuntu
END

Expand Down

0 comments on commit b655edb

Please sign in to comment.