gstreamer-sharp: fix typo in script name

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2152>
This commit is contained in:
Andoni Morales Alastruey 2022-04-11 15:55:07 +02:00 committed by GStreamer Marge Bot
parent e4a6521ac7
commit 5a6aff05ec

View file

@ -457,12 +457,12 @@ endif
dotnet_format = find_program('dotnet-format', required: false)
if dotnet_format.found()
run_target('csharp_format_check',
command: [join_paths(meson.current_source_dir(), 'scripts', 'format-chsharp'),
command: [join_paths(meson.current_source_dir(), 'scripts', 'format-csharp'),
'--check'
],
)
run_target('csharp_format_apply',
command: [join_paths(meson.current_source_dir(), 'scripts', 'format-chsharp'),
command: [join_paths(meson.current_source_dir(), 'scripts', 'format-csharp'),
],
)
endif