Skip to content

Commit

Permalink
Merge pull request #663 from kkoomen/release/v4.7.0
Browse files Browse the repository at this point in the history
v4.7.0 fix
  • Loading branch information
kkoomen authored May 1, 2024
2 parents 2bd5728 + 6cb99a4 commit 1883519
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin, aarch64-unknown-linux-gnu
targets: aarch64-apple-darwin, x86_64-apple-darwin, aarch64-unknown-linux-gnu

- name: Install Cargo dependencies (linux)
if: runner.os == 'Linux'
Expand Down
7 changes: 6 additions & 1 deletion scripts/install.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
$RootDir = Resolve-Path -Path ((Split-Path $MyInvocation.MyCommand.Path) + "\..")
$InstallDir = $args[0]

if (-not $InstallDir) {
$InstallDir = $RootDir
}

$BinDir = "$InstallDir\bin"
$OutFile = "$BinDir\vim-doge-helper.exe"

Expand All @@ -14,7 +20,6 @@ else {
$AssetName = "vim-doge-helper-windows-x86_64.zip"
}

$RootDir = Resolve-Path -Path ((Split-Path $MyInvocation.MyCommand.Path) + "\..")
$AppVersion = Get-Content "$RootDir\.version"

$AssetPath = "$RootDir\bin\$AssetName"
Expand Down

0 comments on commit 1883519

Please sign in to comment.