Skip to content

Commit

Permalink
Fix generation of manigest file during pack.
Browse files Browse the repository at this point in the history
  • Loading branch information
mishani0x0ef committed Oct 8, 2017
1 parent 4cb369f commit 6b56863
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ReportJ.Extension.Chrome/pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Param(
# Change Version
Write-Host "## Set version to ${version}";
$manifest = Get-Content ".\app\manifest.json" -raw | ConvertFrom-Json
$manifest.version = $version
$manifest | ConvertTo-Json | set-content ".\app\manifest.json"
$manifest.version = "${version}"
$manifest | ConvertTo-Json -Depth 10 | set-content ".\app\manifest.json"

# BUILD
Write-Host "## Run NPM build";
Expand Down

0 comments on commit 6b56863

Please sign in to comment.