Fixed linter warning
This commit is contained in:
parent
77a1e86f84
commit
0d27d357dd
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue