Commit f65925c
committed
fix: use line-by-line Select-String for checksum lookup in install.ps1
Get-Content -Raw returns the file as a single string, so Select-String
treated it as one line and ^ only matched the start of the file.
Reading line by line allows ^ to anchor correctly per line.1 parent 0b49cf1 commit f65925c
1 file changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
58 | 59 | | |
59 | 60 | | |
60 | 61 | | |
| |||
0 commit comments