From fcb206d160d2588d5210d605191de78120a25879 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Thu, 11 Mar 2021 13:56:54 +0100 Subject: [PATCH] Avoid copying generated file 'style.css.map' --- deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.43.0