Skip to content

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
fix POSIX compatibility
provide binary releases for POSIX platforms
  • Loading branch information
lmmarsano committed Apr 17, 2019
1 parent e348a00 commit db99167
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Save the application to a directory in your `PATH`.
```PowerShell
New-Item -Type Directory -Path ~\path | Set-Location
Start-BitsTransfer -Source https://github.com/lmmarsano/alias/releases/latest/download/alias-win-x64.zip
Expand-Archive -Path alias.zip
Remove-Item -Path alias.zip
Expand-Archive -Path alias-win-x64.zip
Remove-Item -Path alias-win-x64.zip
[System.Environment]::SetEnvironmentVariable(
'PATH',
(('%USERPROFILE%\path', [System.Environment]::GetEnvironmentVariable('PATH', [System.EnvironmentVariableTarget]::User) -split ';' | Select-Object -Unique -join ';'),
Expand Down Expand Up @@ -152,8 +152,8 @@ and running the generated executables.
# To Do
Include file system operations to link/copy/remove the alias executable as configuration mode edits `alias.conf`.

[release-linux]: /lmmarsano/alias/releases/latest/download/alias-linux-x64.txz
[release-osx]: /lmmarsano/alias/releases/latest/download/alias-osx-x64.txz
[release-linux]: //github.com/lmmarsano/alias/releases/latest/download/alias-linux-x64.txz
[release-osx]: //github.com/lmmarsano/alias/releases/latest/download/alias-osx-x64.txz
[dotnet]: https://dotnet.microsoft.com/download/dotnet-core/3.0
[wsl]: https://docs.microsoft.com/en-us/windows/wsl/about
[json]: https://www.json.org/
Expand Down
2 changes: 1 addition & 1 deletion source/Alias/Alias.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageTags>console</PackageTags>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Copyright>2019</Copyright>
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="*" />
Expand Down

0 comments on commit db99167

Please sign in to comment.