mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-24 13:47:46 +00:00
9 lines
No EOL
379 B
PowerShell
9 lines
No EOL
379 B
PowerShell
param($installPath, $toolsPath, $package, $project)
|
|
|
|
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
|
|
|
|
# Get the current Post Build Event cmd
|
|
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
|
|
|
|
# Remove our post build command from it (if it's there)
|
|
$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($LibLuaPostBuildCmd, "") |