-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
copy.ps1
59 lines (41 loc) · 1.46 KB
/
copy.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Param(
[Parameter(Mandatory=$false)]
[Switch] $clean,
[Parameter(Mandatory=$false)]
[Switch] $log,
[Parameter(Mandatory=$false)]
[Switch] $useDebug,
[Parameter(Mandatory=$false)]
[Switch] $self,
[Parameter(Mandatory=$false)]
[Switch] $all,
[Parameter(Mandatory=$false)]
[String] $custom="",
[Parameter(Mandatory=$false)]
[Switch] $file,
[Parameter(Mandatory=$false)]
[Switch] $help
)
if ($help -eq $true) {
echo "`"Copy`" - Builds and copies your mod to your quest, and also starts Beat Saber with optional logging"
echo "`n-- Arguments --`n"
echo "-Clean `t`t Performs a clean build (equvilant to running `"Build -clean`")"
echo "-UseDebug `t Copied the debug version of the mod to your quest"
echo "-Log `t`t Logs Beat Saber using the `"Start-Logging`" command"
echo "`n-- Logging Arguments --`n"
& $PSScriptRoot/start-logging.ps1 -help -excludeHeader
exit
}
& $PSScriptRoot/build.ps1 -clean:$clean
if ($LASTEXITCODE -ne 0) {
echo "Failed to build, exiting..."
exit $LASTEXITCODE
}
if ($useDebug -eq $true) {
$fileName = Get-ChildItem lib*.so -Path "build/debug" -Name
} else {
$fileName = Get-ChildItem lib*.so -Path "build/" -Name
}
& adb push build/$fileName /sdcard/Android/data/com.beatgames.beatsaber/files/mods/$fileName
& $PSScriptRoot/restart-game.ps1
if ($log -eq $true) { & $PSScriptRoot/start-logging.ps1 -self:$self -all:$all -custom:$custom -file:$file }