Skip to content

Instantly share code, notes, and snippets.

@cory2067
Last active July 28, 2019 01:23
Show Gist options
  • Save cory2067/279f403702088cbf4b6e8903f9465bd6 to your computer and use it in GitHub Desktop.
Save cory2067/279f403702088cbf4b6e8903f9465bd6 to your computer and use it in GitHub Desktop.
Running pavlukivan's pp changes locally
  1. Make sure you have .NET SDK. These instructions also assume you have git
  • (note: the git installer should install a program called Git Bash, which you can run and input the following commands)
  1. Get osu-tools using this command:
git clone https://github.com/ppy/osu-tools.git
  1. Navigate to osu-tools, and open .gitmodules in notepad:
cd osu-tools
notepad .gitmodules
  1. Change the contents of that file to:
[submodule "osu"]
	path = osu
	url = https://github.com/pavlukivan/osu
	branch = taiko-pp
  1. Save and exit notepad, then run the following commands to load the pp changes:
git submodule sync
git submodule update --init --recursive --remote
  1. Run performance calculator: (note -- this may crash with Git Bash, so try cmd or powershell instead)
cd PerformanceCalculator
dotnet run -- profile USERNAME API_KEY -r 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment