Fixed powershell syntax

This commit is contained in:
Antoine Gersant 2020-02-01 19:59:04 -08:00
parent f9f69cd55c
commit b413125a46
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1534,7 +1534,7 @@ dependencies = [
[[package]] [[package]]
name = "polaris" name = "polaris"
version = "0.12.0-wip42" version = "0.12.0-wip43"
dependencies = [ dependencies = [
"anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)", "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
"ape 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "ape 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "polaris" name = "polaris"
version = "0.12.0-wip42" version = "0.12.0-wip43"
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"] authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
edition = "2018" edition = "2018"

View file

@ -29,7 +29,7 @@ Copy-Item .\docs\swagger .\release\tmp\swagger -recurse
"" ""
"Inserting version number in installer config" "Inserting version number in installer config"
[xml]$wxs = Get-Content .\res\windows\installer\installer.wxs [xml]$wxs = Get-Content .\res\windows\installer\installer.wxs
$wxs.Wix.Product.UpdateAttribute("Version", $POLARIS_VERSION) $wxs.Wix.Product.SetAttribute("Version", $POLARIS_VERSION)
$wxs.Save('.\res\windows\installer\installer.wxs') $wxs.Save('.\res\windows\installer\installer.wxs')
"" ""