Skip to content

Commit

Permalink
[chore] 提交git时忽略._*.go文件,make clean时清除这些文件
Browse files Browse the repository at this point in the history
  • Loading branch information
q191201771 committed May 11, 2024
1 parent fde1e68 commit e5a582b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
._*.go

/app/demo/push_rtmp_hook
/app/demo/parse_ts/

Expand Down
1 change: 1 addition & 0 deletions script/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ rm -rf *.laldump *.log
rm -rf ./release ./bin ./lal_record ./logs
find ./pkg -name 'lal_record' | xargs rm -rf
find ./pkg -name 'logs' | xargs rm -rf
find . -type f -name "._*.go" -print0 | xargs -0 rm -f

0 comments on commit e5a582b

Please sign in to comment.