We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2a7a72 commit 5f62c23Copy full SHA for 5f62c23
1 file changed
modules/DependencyControl/Updater.moon
@@ -209,10 +209,10 @@ class UpdateTask extends UpdaterBase
209
@record.name, @record\getVersionString!
210
return 0
211
212
- res = msgs.run.noFeedAvailExt\format @record\getVersionString(@targetVersion),
+ res = msgs.run.noFeedAvailExt\format @targetVersion == 0 and "any" or @record\getVersionString(@targetVersion),
213
@record.virtual and "no" or @record\getVersionString!,
214
maxVer<1 and "none" or @record\getVersionString maxVer
215
- return logUpdateError -6
+ return logUpdateError -6, res
216
217
code, res = @performUpdate updateRecord
218
return logUpdateError code, res, wasVirtual
0 commit comments