make the client have proxy methods
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m43s

This commit is contained in:
Jess H 2024-06-11 23:42:13 +01:00
parent f447d91da9
commit 57581e99b2
Signed by: UnixSystemV
GPG key ID: 9B21C50B68D67F19
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ jobs:
if: github.ref == 'refs/heads/release'
run: |
./gradlew Client:proguardRelease
bash mobf.sh Client/build/proguard/BaseBand-Broadway.jar
MOBFARGS=-p bash mobf.sh Client/build/proguard/BaseBand-Broadway.jar
- name: Upload DSM
continue-on-error: true

View file

@ -3,5 +3,5 @@
curl https://data.tudbut.de/mobf.jar > mobf.jar
for file in "$@" ; do
echo "$file"
java -jar mobf.jar !mixins !org/ !spotify !google !sun !oshi -k "$file" || exit 1
java -jar mobf.jar !mixins !org/ !spotify !google !sun !oshi -k $MOBFARGS "$file" || exit 1
done