You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[start_ursim] Always check ursim version for compatibility
Before, the version was only checked when explicitly specified. This could lead to errors if there was a local image with tag "latest" which was actually an old version.
echo"Illegal version given. Version must be greater or equal to $MIN_VERSION. Given version: $URSIM_VERSION."
129
+
echo"Illegal version given. For $ROBOT_SERIES$ROBOT_MODEL the software version must be greater or equal to $MIN_VERSION. Given version: $IMAGE_URSIM_VERSION."
122
130
exit
123
131
}
124
132
@@ -134,7 +142,6 @@ while getopts ":hm:v:p:u:d" option; do
134
142
;;
135
143
v) # ursim_version
136
144
URSIM_VERSION=${OPTARG}
137
-
validate_ursim_version
138
145
;;
139
146
p) # program_folder
140
147
PROGRAM_STORAGE=${OPTARG}
@@ -151,6 +158,7 @@ while getopts ":hm:v:p:u:d" option; do
0 commit comments