219d4ee33b87cf8dcd76536cc28cf9413ca77a8d
[rup.git] / deploy.ps1
1 if ($args.Count -lt 1) {
2    $scriptName = [Environment]::GetCommandLineArgs()[1]
3    echo "Usage: $scriptName <destination>"
4    exit 1
5 }
6
7
8 systemctl --user stop www-rouleunpet.service
9
10 git pull
11 cargo build --release
12
13 $destination=$args[0]
14
15 if (!(Test-Path -Path $destination)) {
16    New-Item -ItemType directory -Path $destination
17 }
18
19 Copy-Item target/release/rup -Destination $destination
20 Copy-Item key.secret -Destination $destination
21
22 Copy-Item static -Destination $destination -Recurse -Force
23
24 # Do not overwrite the configuration.
25 if (!(Test-Path -Path $destination/conf.ron)) {
26    Copy-Item conf.ron -Destination $destination
27 }
28
29 systemctl --user start www-rouleunpet.service
30