Skip to content

Commit

Permalink
feat: add clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
keivanipchihagh committed Mar 18, 2024
1 parent 3cacecd commit 56dd81d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

working_dir=$(pwd)
proto_dirs=($(pwd)/protos) # ./protos/

# Find all files with `pb2` and delete them
find "$proto_dirs" -type f -name "*pb2*" -delete

0 comments on commit 56dd81d

Please sign in to comment.