Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryngelson committed Dec 29, 2024
1 parent 20d54d4 commit 519cbd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/fpp_to_fypp.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for file in $(find src -type f | grep -Ev 'autogen' | grep -E '\.fypp$'); do
for file in $(find src -type f | grep -Ev 'autogen' | grep -E '\.fpp$'); do
echo "$file"
mv "$file" "$(echo "$file" | sed s/\.fypp/\.fypp/)"
mv "$file" "$(echo "$file" | sed s/\.fpp/\.fypp/)"
done

0 comments on commit 519cbd7

Please sign in to comment.