From 653e57ad0d7eefb25b49da87a10da895e29d46df Mon Sep 17 00:00:00 2001 From: itouakirai <85016486+itouakirai@users.noreply.github.com> Date: Fri, 7 Nov 2025 16:11:45 +0800 Subject: [PATCH] docs: Enhance deployment instructions Added instructions for updating AppleMusicDecrypt. --- android-deploy.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/android-deploy.md b/android-deploy.md index 9d5c904..00bb7e3 100644 --- a/android-deploy.md +++ b/android-deploy.md @@ -11,7 +11,7 @@ pd i debian ## Step 2: Deploy AppleMusicDecrypt Enter the Debian environment(`pd login debian`) ```shell -apt update && apt install pipx && pipx install poetry && pipx ensurepath && source ~/.bashrc +apt update && apt install pipx git -y && pipx install poetry && pipx ensurepath && source ~/.bashrc git clone https://github.com/WorldObservationLog/AppleMusicDecrypt cd AppleMusicDecrypt bash ./tools/install-deps.sh @@ -34,3 +34,12 @@ playlistDirPathFormat = "/sdcard/Music/playlists/{playlistName}" ``` ## Step 4: Run AppleMusicDecrypt `poetry run python main.py` +## Update AppleMusicDecrypt +```shell +pd login debian +cd AppleMusicDecrypt +git checkout -f && git pull +poetry update +cp config.example.toml config.toml +nano config.toml +```