Skip to content

Commit

Permalink
try again to fix the Playwright assets in the package
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsequitur committed Aug 24, 2022
1 parent 4f8fc15 commit eba835d
Show file tree
Hide file tree
Showing 2 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
Expand Up @@ -11,7 +11,7 @@ build_script:
after_build:
- cmd: >-
dotnet pack .\src\dotnet-repl\dotnet-repl.csproj -c:release --no-build -p:Version=%APPVEYOR_BUILD_VERSION%
dotnet pack .\src\dotnet-repl\dotnet-repl.csproj -c:release -p:Version=%APPVEYOR_BUILD_VERSION%
test_script:
- cmd: >-
Expand Down
4 changes: 2 additions & 2 deletions src/dotnet-repl/build-and-install-tool.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ $thisDir = Split-Path -Parent $PSCommandPath
$toolLocation = ""
$toolVersion = ""

dotnet pack (Join-Path $thisDir "dotnet-repl.csproj") -c:Release /p:Version=1.0.0
dotnet pack (Join-Path $thisDir "dotnet-repl.csproj") /p:Version=1.0.0
$script:toolLocation = Join-Path $thisDir "bin" "debug"
$script:toolVersion = "1.0.0"

if (Get-Command dotnet-repl -ErrorAction SilentlyContinue) {
dotnet tool uninstall -g dotnet-repl
}
dotnet tool install -g --add-source "$toolLocation" --version $toolVersion dotnet-repl
dotnet tool install -g --add-source "$toolLocation" --version $toolVersion dotnet-repl

0 comments on commit eba835d

Please sign in to comment.