mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 21:27:46 +00:00
12 lines
No EOL
414 B
PowerShell
12 lines
No EOL
414 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
|
|
|
|
|
|
# Append our post build command if it's not already there
|
|
if (!$currentPostBuildCmd.Contains($LibLuaPostBuildCmd)) {
|
|
$project.Properties.Item("PostBuildEvent").Value += $LibLuaPostBuildCmd
|
|
} |