Skip to content

Commit

Permalink
Fix missing semicolon in build.cake
Browse files Browse the repository at this point in the history
A missing semicolon at the end of a declaration line for 'github_token' variable in the build.cake file was causing a syntax error. This has been fixed by adding the missing semicolon.
  • Loading branch information
Gary Woodfine committed Jan 16, 2024
1 parent db8954a commit 0053d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
var nuget_api_key = Argument<string>("nuget_api_key");
var github_token = Argument<string>("github_token")
var github_token = Argument<string>("github_token");

string version = String.Empty;
//////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 0053d7f

Please sign in to comment.