Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Al4ise/Azule
Browse files Browse the repository at this point in the history
  • Loading branch information
Al4ise committed Oct 26, 2021
1 parent 1a7ce41 commit b185c38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azule
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ if [ -n "$files" ]; then
fi

# SPECIFYING DYLIBS
while read -r i; do dylibs+=("$i"); done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.dylib' ! -path '*.bundle/*' ! -path '*.framework/*')
while read -r i; do dylibs+=("$i"); done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.dylib' ! -path '*PreferenceBundles/*' ! -path '*.bundle/*' ! -path '*.framework/*')

# DYLIB SELECTION
for i in "${dylibs[@]}"; do
Expand Down Expand Up @@ -902,13 +902,13 @@ if [ -n "$files" ]; then
Verbose "Copied $(basename "$i") to app directory" "$(basename "$i") couldn't be copied to app directory" -e
inject+=( "$(basename "$i")/$(ExtractPlistValue CFBundleExecutable "$i/Info.plist")" )
fi
done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.framework' ! -path '*.bundle/*' ! -path '*.framework/*')
done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.framework' ! -path '*PreferenceBundles/*' ! -path '*.bundle/*' ! -path '*.framework/*')

# MOVING BUNDLES
while read -r i; do
rsync -a "$i" Payload/"$appname"/
Verbose "Copied $(basename "$i") to app directory" "$(basename "$i") couldn't be copied to app directory" -e
done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.bundle' ! -path '*.bundle/*' ! -path '*.framework/*')
done < <(find "$dir/$tweakid/Tweak" ! -type l -iname '*.bundle' ! -path '*PreferenceBundles/*' ! -path '*.bundle/*' ! -path '*.framework/*')

# FIXING LINKS
for i in "${inject[@]}"; do
Expand Down

0 comments on commit b185c38

Please sign in to comment.