Skip to content

Commit

Permalink
Sponge 프로그램 파일 경로 확인이 누락된 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Nov 18, 2024
1 parent e4a0a64 commit 0144a8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/TableCloth/Components/ISharedLocations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public interface ISharedLocations
string ExecutableDirectoryPath { get; }
string ExecutableFilePath { get; }
string SporkZipFilePath { get; }
string SpongeZipFilePath { get; }
string ImagesZipFilePath { get; }
string PreferencesFilePath { get; }

Expand Down
2 changes: 1 addition & 1 deletion src/TableCloth/Components/Implementations/AppStartup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public async Task<ApplicationStartupResultModel> HasRequirementsMetAsync(IList<s
return result;
}

if (!File.Exists(_sharedLocations.SporkZipFilePath))
if (!File.Exists(_sharedLocations.SpongeZipFilePath))
{
result = ApplicationStartupResultModel.FromErrorMessage(
ErrorStrings.Error_Sponge_Missing, isCritical: true, providedWarnings: warnings);
Expand Down

0 comments on commit 0144a8e

Please sign in to comment.