revert to user folder

should be faster this way, and it wasn't actually causing the problems i thought it was causing

pester tests pass for all kinds
This commit is contained in:
pblivingston
2026-03-04 21:15:46 -05:00
parent ed3b7be904
commit d1dfe2de52
2 changed files with 22 additions and 20 deletions

View File

@@ -20,11 +20,15 @@ class Remote {
[String]$vmpath
[Hashtable]$kind
[Object]$profiles
[String]$userpath
[String]$workingconfig
Remote ([String]$kindId) {
$this.vmpath = Setup_DLL
$this.kind = GetKind($kindId)
$this.profiles = Get_Profiles($this.kind.name)
$this.userpath = Join-Path ([Environment]::GetFolderPath('MyDocuments')) 'Voicemeeter'
$this.workingconfig = Join-Path $this.userpath ('vm' + $this.kind.name + '_working.xml')
}
[string] ToString() {