Update dependencies
[recipes.git] / deploy.ps1
index e066f1d..6f0b534 100644 (file)
@@ -4,7 +4,6 @@ if ($args.Count -lt 1) {
    exit 1
 }
 
-git pull
 cargo build --release
 
 systemctl --user stop www-recipes.service
@@ -15,13 +14,14 @@ if (!(Test-Path -Path $destination)) {
    New-Item -ItemType directory -Path $destination
 }
 
+strip target/release/recipes
 Copy-Item target/release/recipes -Destination $destination
 
-Copy-Item static -Destination $destination -Recurse -Force
+Copy-Item backend/static -Destination $destination -Recurse -Force
 
 # Do not overwrite the configuration.
 if (!(Test-Path -Path $destination/conf.ron)) {
-   Copy-Item conf.ron -Destination $destination
+   Copy-Item backend/conf.ron -Destination $destination
 }
 
 systemctl --user start www-recipes.service