Skip to content

Commit fda5c6c

Browse files
committed
Split Community / Official
1 parent 67b8438 commit fda5c6c

File tree

211 files changed

+9
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+9
-11
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

copilot.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ OUTPUT_FILE="copilot.txt"
1111
# Generate a list of ignored files using git
1212
IGNORED_FILES=$(git ls-files --others --ignored --exclude-standard)
1313

14-
# Find all Python files, excluding those in .gitignore
15-
find . -name "*.py" ! -name "__init__.py" | grep -vFf <(echo "$IGNORED_FILES") | while read -r file; do
14+
# Find all Python files, excluding those in .gitignore and community folder
15+
find . -name "*.py" ! -name "__init__.py" ! -path "./community/*" | grep -vFf <(echo "$IGNORED_FILES") | while read -r file; do
1616
# Append the file name to the output file
1717
echo "### File: $file ###" >> "$OUTPUT_FILE"
1818
# Append the content of the file to the output file

readme.md

+7-9

0 commit comments

Comments
 (0)