Skip to content

Commit

Permalink
Fix missing filename in install -c log message
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Jan 10, 2018
1 parent 06b74b8 commit 26ff29b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
- [GUI] Update registry at start of GUI if available_modules is empty (#2241 by: HebaruSan; reviewed: politas)
- [GUI] Allow uninstallation of mods while Incompatible filter is selected (#2242 by: HebaruSan; reviewed: politas)
- [Core] Validate downloaded files against metadata before adding to cache (#2243 by: HebaruSan; reviewed: politas)
- [Core] Fix missing filename in install -c log message (No PR, by: HebaruSan)

## v1.24.0-PRE1 (McCandless)

Expand Down
2 changes: 1 addition & 1 deletion Cmdline/Action/Install.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public int RunCommand(CKAN.KSP ksp, object raw_options)
// If it is a local file, we already know the filename. If it is remote, create a temporary file and download the remote resource.
if (ckan_uri.IsFile)
{
log.InfoFormat("Installing from local CKAN file \"{0}\"", filename);
filename = ckan_uri.LocalPath;
log.InfoFormat("Installing from local CKAN file \"{0}\"", filename);
}
else
{
Expand Down

0 comments on commit 26ff29b

Please sign in to comment.