Skip to content

Commit 10361ff

Browse files
style(functions): remove unnecessary quotes
1 parent 697657c commit 10361ff

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Functions.psm1

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -181,71 +181,71 @@ function Install-Cursors {
181181
$targetPath = $cursor.FullName
182182
switch -Exact ($cursor.Name) {
183183
'alternate.cur' {
184-
Set-Cursor -Name 'UpArrow' -Path "$targetPath"
184+
Set-Cursor -Name 'UpArrow' -Path $targetPath
185185
break
186186
}
187187
'beam.cur' {
188-
Set-Cursor -Name 'IBeam' -Path "$targetPath"
188+
Set-Cursor -Name 'IBeam' -Path $targetPath
189189
break
190190
}
191191
'busy.ani' {
192-
Set-Cursor -Name 'Wait' -Path "$targetPath"
192+
Set-Cursor -Name 'Wait' -Path $targetPath
193193
break
194194
}
195195
'dgn1.cur' {
196-
Set-Cursor -Name 'SizeNWSE' -Path "$targetPath"
196+
Set-Cursor -Name 'SizeNWSE' -Path $targetPath
197197
break
198198
}
199199
'dgn2.cur' {
200-
Set-Cursor -Name 'SizeNESW' -Path "$targetPath"
200+
Set-Cursor -Name 'SizeNESW' -Path $targetPath
201201
break
202202
}
203203
'handwriting.cur' {
204-
Set-Cursor -Name 'NWPen' -Path "$targetPath"
204+
Set-Cursor -Name 'NWPen' -Path $targetPath
205205
break
206206
}
207207
'help.cur' {
208-
Set-Cursor -Name 'Help' -Path "$targetPath"
208+
Set-Cursor -Name 'Help' -Path $targetPath
209209
break
210210
}
211211
'horz.cur' {
212-
Set-Cursor -Name 'SizeWE' -Path "$targetPath"
212+
Set-Cursor -Name 'SizeWE' -Path $targetPath
213213
break
214214
}
215215
'link.cur' {
216-
Set-Cursor -Name 'Hand' -Path "$targetPath"
216+
Set-Cursor -Name 'Hand' -Path $targetPath
217217
break
218218
}
219219
'move.cur' {
220-
Set-Cursor -Name 'SizeAll' -Path "$targetPath"
220+
Set-Cursor -Name 'SizeAll' -Path $targetPath
221221
break
222222
}
223223
'person.cur' {
224-
Set-Cursor -Name 'Person' -Path "$targetPath"
224+
Set-Cursor -Name 'Person' -Path $targetPath
225225
break
226226
}
227227
'pin.cur' {
228-
Set-Cursor -Name 'Pin' -Path "$targetPath"
228+
Set-Cursor -Name 'Pin' -Path $targetPath
229229
break
230230
}
231231
'pointer.cur' {
232-
Set-Cursor -Name 'Arrow' -Path "$targetPath"
232+
Set-Cursor -Name 'Arrow' -Path $targetPath
233233
break
234234
}
235235
'precision.cur' {
236-
Set-Cursor -Name 'Crosshair' -Path "$targetPath"
236+
Set-Cursor -Name 'Crosshair' -Path $targetPath
237237
break
238238
}
239239
'unavailable.cur' {
240-
Set-Cursor -Name 'No' -Path "$targetPath"
240+
Set-Cursor -Name 'No' -Path $targetPath
241241
break
242242
}
243243
'vert.cur' {
244-
Set-Cursor -Name 'SizeNS' -Path "$targetPath"
244+
Set-Cursor -Name 'SizeNS' -Path $targetPath
245245
break
246246
}
247247
'working.ani' {
248-
Set-Cursor -Name 'AppStarting' -Path "$targetPath"
248+
Set-Cursor -Name 'AppStarting' -Path $targetPath
249249
}
250250
}
251251
}

0 commit comments

Comments
 (0)