Roblox-File-Format/Plugins/DeployToStudio.ps1

7 lines
276 B
PowerShell
Raw Normal View History

2020-06-30 00:06:14 +00:00
$pluginName = "GenerateApiDump.rbxm"
$studioKey = "HKCU:\Software\Roblox\RobloxStudio"
$contentDir = Get-ItemPropertyValue -Path $studioKey -Name "ContentFolder"
$destPath = $contentDir + "/../BuiltInPlugins/" + $pluginName
Copy-Item -Path $pluginName -Destination $destPath