Skip to content

Commit

Permalink
replace fd and sd
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <[email protected]>
  • Loading branch information
Kenji Miyake committed Aug 23, 2022
1 parent 236a7f9 commit 4f5bb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update-codeowners-from-packages/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ runs:
# List package maintainers
echo "### Automatically generated from package.xml ###" >>.github/CODEOWNERS
for package_xml in $(fd package.xml | sd "^./" ""); do
for package_xml in $(find . -name package.xml | sed -e "s|^./||"); do
package_dir=$(dirname "$package_xml")
line="$package_dir/*"
Expand Down

0 comments on commit 4f5bb08

Please sign in to comment.