Skip to content

Commit

Permalink
Make prepare-lucide.sh compatible with sh
Browse files Browse the repository at this point in the history
  • Loading branch information
AliOsm committed Sep 1, 2024
1 parent 212e92d commit 9de8cd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/prepare-lucide.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
packs_to_remove=("bootstrap" "flag" "hero" "radix" "remix")
packs_to_remove="bootstrap flag hero radix remix"

for pack in "${packs_to_remove[@]}"; do
for pack in $packs_to_remove; do
rm -rf "lib/phlex/icons/$pack"
rm "lib/phlex/icons/$pack.rb"
sed -i "/require_relative 'phlex\/icons\/$pack'/d" lib/phlex_icons.rb
Expand Down

0 comments on commit 9de8cd3

Please sign in to comment.