From 5a6aff05ecdef1507038997af8610dce8aa323df Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Mon, 11 Apr 2022 15:55:07 +0200 Subject: [PATCH] gstreamer-sharp: fix typo in script name Part-of: --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index c65934ac7f..619341adb8 100644 --- a/meson.build +++ b/meson.build @@ -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