Update deployment script

pull/17/head
Alexey Golub 7 years ago
parent e59a1ea8b4
commit 5ecbfd50b8

@ -1,6 +1,6 @@
$path = "..\DiscordChatExporter\bin\Release\*" $path = "$PSScriptRoot\..\DiscordChatExporter\bin\Release\*"
$include = "*.exe", "*.dll", "*.config" $include = "*.exe", "*.dll", "*.config"
$outputDir = "Output" $outputDir = "$PSScriptRoot\Output"
$outputFile = "DiscordChatExporter.zip" $outputFile = "DiscordChatExporter.zip"
# Create output directory # Create output directory
@ -10,13 +10,13 @@ if (-Not (Test-Path $outputDir))
} }
# Delete output if already exists # Delete output if already exists
if (Test-Path("$outputDir/$outputFile")) if (Test-Path("$outputDir\$outputFile"))
{ {
Remove-Item -Path "$outputDir/$outputFile" Remove-Item -Path "$outputDir\$outputFile"
} }
# Get files # Get files
$files = Get-ChildItem -Path $path -Include $include $files = Get-ChildItem -Path $path -Include $include
# Pack into archive # Pack into archive
$files | Compress-Archive -DestinationPath "$outputDir/$outputFile" $files | Compress-Archive -DestinationPath "$outputDir\$outputFile"
Loading…
Cancel
Save