Skip to content

Commit

Permalink
Fix bug again
Browse files Browse the repository at this point in the history
  • Loading branch information
buihien224 authored Dec 4, 2023
1 parent 20a9fab commit 5cdf10a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- name: Download Framework.jar
run: |
axel -n $(nproc) ${{ github.event.inputs.F }}
mv *jar img_temp
- name : PATCH-ING
run: |
Expand Down
16 changes: 16 additions & 0 deletions bhlnk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,22 @@ jar_util()
fi
}

repM () {
if [[ $4 == "r" ]]; then
if [[ -f $3 ]]; then
$repM $1 $2 $3
fi
elif [[ $4 == "f" ]]; then
for i in $3; do
$repM $1 $2 $i
done
else
file=$(sudo find -name $3)
if [[ $file ]]; then
$repM $1 $2 $file
fi
fi
}

framework() {

Expand Down

0 comments on commit 5cdf10a

Please sign in to comment.