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
|("release", None)-> failwithf "can not run release because no explicit version number was passed on the command line"
46
+
|("release", None)-> failwithf "cannot run release because no explicit version number was passed on the command line"
47
47
|("release", Some v)->
48
-
if(currentVersion >= v)then failwithf "tried to create release %s but current version is already at %s"(v.ToString())(currentVersion.ToString())
48
+
// Warn if version is same as current version
49
+
if(currentVersion >= v)then traceImportant (sprintf "creating release %s when current version is already at %s"(v.ToString())(currentVersion.ToString()))
49
50
writeVersionIntoGlobalJson v
50
51
v
51
-
|("canary", Some v)-> failwithf "can not run canary release, expected no version number to specified but received %s"(v.ToString())
52
+
|("canary", Some v)-> failwithf "cannot run canary release, expected no version number to specified but received %s"(v.ToString())
0 commit comments