Skip to content

Commit f1118d1

Browse files
committed
fix: skip neo4j
1 parent c2fb308 commit f1118d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/changed-modules.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ set -euxo pipefail
3939
# Expected output: []
4040
#
4141
# 9. A excluded module is modified:
42-
# ALL_CHANGED_FILES="packages/modules/couchbase/a.txt" ./.github/scripts/changed-modules.sh
42+
# ALL_CHANGED_FILES="packages/modules/couchbase/a.txt packages/modules/neo4j/b.txt" ./.github/scripts/changed-modules.sh
4343
# Expected output: []
4444
#
4545
# There is room for improvement in this script. For example, it could detect if the changes applied to the docs or the .github dirs, and then do not include any module in the list.
@@ -60,7 +60,7 @@ while IFS= read -r file; do
6060
done < <(find "${ROOT_DIR}" -maxdepth 1 -type f -not -name "package.json" -not -name "package-lock.json")
6161

6262
# define an array of modules that won't be part of the build
63-
readonly no_build_modules=("couchbase")
63+
readonly no_build_modules=("couchbase" "neo4j")
6464

6565
# modules is an array that will store the paths of all the modules in the repository.
6666
modules=()

0 commit comments

Comments
 (0)