Skip to content

Commit

Permalink
Fix '../branding' to './branding': Directory not empty
Browse files Browse the repository at this point in the history
  • Loading branch information
kairusds committed Oct 8, 2022
1 parent df38b4f commit 6c9520a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/repack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "PATCHES_FILE=$old_file" >> $GITHUB_ENV
mkdir rp ; mv $old_file rp ; cd rp
unzip revanced-patches*.jar ; rm $old_file
mv ../branding . ; jar cvf ../$old_file *
cp -r ../branding . ; jar cvf ../$old_file *
- name: Get patches jar checksum
run: |
Expand Down
2 changes: 1 addition & 1 deletion repack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ wget -c $(curl -ksL "https://api.github.com/repos/revanced/revanced-patches/rele
old_file=$(find revanced-patches*.jar)
mkdir repack ; mv $old_file repack ; cd repack
unzip revanced-patches*.jar ; rm $old_file
cp ../branding . ; jar cvf ../$old_file * ; cd .. ; rm -r repack
cp -r ../branding . ; jar cvf ../$old_file * ; cd .. ; rm -r repack

echo "Done. $old_file has been generated."

0 comments on commit 6c9520a

Please sign in to comment.