Skip to content

Commit 9182c20

Browse files
committed
Fixed build-single-header.sh (fixes #1592)
1 parent cb1b3be commit 9182c20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extras/scripts/build-single-header.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
set -e
44

5-
RE_RELATIVE_INCLUDE='^#include[[:space:]]*"(.*)"'
6-
RE_ABSOLUTE_INCLUDE='^#include[[:space:]]*<(ArduinoJson/.*)>'
7-
RE_SYSTEM_INCLUDE='^#include[[:space:]]*<(.*)>'
8-
RE_EMPTY='^(#pragma[[:space:]]+once)?[[:space:]]*(//.*)?$'
5+
RE_RELATIVE_INCLUDE='^#[[:space:]]*include[[:space:]]*"(.*)"'
6+
RE_ABSOLUTE_INCLUDE='^#[[:space:]]*include[[:space:]]*<(ArduinoJson/.*)>'
7+
RE_SYSTEM_INCLUDE='^#[[:space:]]*include[[:space:]]*<(.*)>'
8+
RE_EMPTY='^(#[[:space:]]*pragma[[:space:]]+once)?[[:space:]]*(//.*)?$'
99
SRC_DIRECTORY="$(realpath "$(dirname $0)/../../src")"
1010

1111

0 commit comments

Comments
 (0)