diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-06-16 11:32:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 11:32:10 +0200 |
commit | b2654cc2bd5487943c44b4bdee646113d4cf45f3 (patch) | |
tree | 905bce590cbc44c4077defa52276bac245c22a2a /misc/scripts | |
parent | 8c18112f5dcf96bf24fab14ab4470c00ab7f7f70 (diff) | |
parent | e19b3701260d4a855736c623b8c8a270413f041e (diff) | |
download | fork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.tar.gz fork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.tar.bz2 fork-godot-webrtc-native-b2654cc2bd5487943c44b4bdee646113d4cf45f3.zip |
Merge pull request #51 from Faless/libdatachannel_pr
Switch to libdatachannel as RTC library. Add GDExtension support.
Diffstat (limited to 'misc/scripts')
-rwxr-xr-x | misc/scripts/file_format.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/scripts/file_format.sh b/misc/scripts/file_format.sh index e6e1fe2..3bb4d8d 100755 --- a/misc/scripts/file_format.sh +++ b/misc/scripts/file_format.sh @@ -20,6 +20,8 @@ while IFS= read -rd '' f; do continue elif [[ "$f" == "godot-cpp"* ]]; then continue + elif [[ "$f" == "misc/patches"* ]]; then + continue fi # Ensure that files are UTF-8 formatted. recode UTF-8 "$f" 2> /dev/null |