From 80d7e9a81149a450b0ef96d0b856d1da1be06393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mustafa=20Ate=C5=9F=20Uzun?= Date: Sat, 19 Aug 2023 17:06:10 +0300 Subject: [PATCH] fix: printed directory path name (#2147) --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 89d94e1e50..faa434d232 100644 --- a/Rakefile +++ b/Rakefile @@ -136,7 +136,7 @@ namespace :lint do desc 'Lints the EmbeddedLibraries directory' task :EmbeddedLibraries do - sh 'echo "Linting /Sources/Private/EmbeddedLibaries (should not contain any public symbols)"' + sh 'echo "Linting /Sources/Private/EmbeddedLibraries (should not contain any public symbols)"' sh '! grep -r "public" Sources/Private/EmbeddedLibraries --include \*.swift' end end