Skip to content

Commit

Permalink
Force overwrite (who has these files already anyways)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyakowint committed Nov 29, 2023
1 parent de665d6 commit 054d7c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Write-Host "Downloading BepInEx..."
Invoke-WebRequest -Uri $bepInExUrl -OutFile "./BepInEx.zip"

Write-Host "Extracting into current directory..."
Expand-Archive -Path "./BepInEx.zip" -DestinationPath "./"
Expand-Archive -Path "./BepInEx.zip" -DestinationPath "./" -Force
Remove-Item -Path "./BepInEx.zip"

New-Item -ItemType Directory -Path "./BepInEx/config"
New-Item -ItemType Directory -Path "./BepInEx/plugins"
New-Item -ItemType Directory -Path "./BepInEx/config" -Force
New-Item -ItemType Directory -Path "./BepInEx/plugins" -Force

Write-Host "Downloading KeyboardOSC..."
Invoke-WebRequest -Uri $cfgUrl -OutFile "./BepInEx/config/BepInEx.cfg"
Expand Down

0 comments on commit 054d7c9

Please sign in to comment.