Skip to content

Commit

Permalink
Merge pull request #3 from RamtinKosari/develop
Browse files Browse the repository at this point in the history
Release Version 1.1

Fix Bugs :
* Multiple Command Attributes
  • Loading branch information
RamtinKosari committed Feb 25, 2024
2 parents c3b91ad + b312ed7 commit d646367
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ while true; do
esac
done

# Extracti Extensions from the Command Line Arguments
for extended in "$@"; do
if [[ "$extended" == *"."* ]]; then
USER_EXTENSION_LIST+=("$extended")
fi
done

# - Find All Files with Given Extensions
if [ ${#USER_EXTENSION_LIST[@]} -ne 0 ]; then
find_expression=()
Expand Down

0 comments on commit d646367

Please sign in to comment.