Fixed linter warning

This commit is contained in:
Antoine Gersant 2019-12-17 13:30:36 -08:00
parent 77a1e86f84
commit 0d27d357dd

View file

@ -1,7 +1,7 @@
Get-ChildItem "Cargo.toml" | % { Get-ChildItem "Cargo.toml" | ForEach-Object {
$conf = $_ | Get-Content -raw $conf = $_ | Get-Content -raw
$conf -match 'version\s+=\s+"(.*)"' | out-null $conf -match 'version\s+=\s+"(.*)"' | out-null
$POLARIS_VERSION = $matches[1] $script:POLARIS_VERSION = $matches[1]
} }
"Compiling resource file" "Compiling resource file"