Skip to content
This repository has been archived by the owner on Jan 7, 2024. It is now read-only.

Commit

Permalink
Upgraded builder
Browse files Browse the repository at this point in the history
  • Loading branch information
iXab3r committed Nov 10, 2018
1 parent 42ea6e6 commit 3f57cbb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion SquirrelReleasify.linq
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ void Main()
var nupkgFilePath = Path.Combine(scriptDir, nupkgFileName);

var releasesFolderName = "Releases";
var squirrelPath = Path.Combine(homeDir, $@"packages\squirrel.windows.1.0.2\tools\Squirrel.exe");
var squirrelPath = Path.Combine(homeDir, $@"packages\squirrel.windows.1.9.0\tools\Squirrel.exe");
if (!File.Exists(squirrelPath))
{
throw new FileNotFoundException($@"Squirrel executable not found '{squirrelPath}' !");
}
var squirrelLogPath = Path.Combine(Path.GetDirectoryName(squirrelPath), "SquirrelSetup.log");

var sourceReleasesFolderPath = Path.Combine(Path.GetDirectoryName(squirrelPath), releasesFolderName);
Expand Down

0 comments on commit 3f57cbb

Please sign in to comment.