From: Greg Burri Date: Thu, 11 Mar 2021 12:56:54 +0000 (+0100) Subject: Avoid copying generated file 'style.css.map' X-Git-Url: http://git.euphorik.ch/index.cgi?p=valheim_web.git;a=commitdiff_plain;h=fcb206d160d2588d5210d605191de78120a25879 Avoid copying generated file 'style.css.map' --- diff --git a/deploy.ps1 b/deploy.ps1 index 5635894..bd431f0 100755 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -20,7 +20,7 @@ if (!(Test-Path -Path $destination)) { strip target/release/valheim_web # To reduce the executable size. Copy-Item target/release/valheim_web -Destination $destination -Copy-Item backend/static -Destination $destination -Recurse -Force +Copy-Item backend/static -Destination $destination -Recurse -Force -Exclude style.css.map # Do not overwrite the configuration. if (!(Test-Path -Path $destination/conf.ron)) {