Skip to content
This repository has been archived by the owner on Nov 8, 2021. It is now read-only.

Commit

Permalink
Don't end output with newline for better piping into clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster committed May 16, 2018
1 parent 3f2f410 commit 9f00080
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.1.0.{build}
version: 0.1.1.{build}
init:
- git config --global core.autocrlf input
clone_depth: 1
Expand Down
2 changes: 1 addition & 1 deletion src/srihash-cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private async Task OnExecute()
}
else
{
Console.WriteLine(integrity);
Console.Write(integrity);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/srihash-cli/srihash-cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>srihash</ToolCommandName>
<LangVersion>latest</LangVersion>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionPrefix>0.1.1</VersionPrefix>
<VersionSuffix>build</VersionSuffix>
<SourceRevisionId>$(APPVEYOR_REPO_COMMIT)</SourceRevisionId>
<PackageVersion Condition="'$(APPVEYOR_REPO_TAG)' == 'true'">$(VersionPrefix)</PackageVersion>
Expand Down

0 comments on commit 9f00080

Please sign in to comment.