From ee2dff6416e3376ac22689c80b96eedab6746337 Mon Sep 17 00:00:00 2001 From: SebiAi <41116921+SebiAi@users.noreply.github.com> Date: Tue, 6 Feb 2024 01:17:52 +0100 Subject: [PATCH] docs(README): Add missing `mkdir` step to the MacOS deploy section and correct lib filename --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3573310..18582bc 100644 --- a/README.md +++ b/README.md @@ -220,9 +220,10 @@ Navigate to the build folder ```bash cd build ``` -Copy the built *TagLib* into the directory +Create the directory and copy the built *TagLib* into the directory ```batch -copy /path/to/libtag.dylib GlyphVisualizer.app/Contents/Frameworks/ +mkdir GlyphVisualizer.app/Contents/Frameworks/ +copy /path/to/libtag.2.dylib GlyphVisualizer.app/Contents/Frameworks/ ``` Use [macdeployqt](https://doc.qt.io/qt-6/macos-deployment.html#the-mac-deployment-tool) ```bash