From 1032a08162f6b45fb1b6d11179f2e15626317908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaan=20L=C4=B1=20=E6=9D=8E=20PhD?= Date: Sun, 12 May 2024 13:52:03 -0400 Subject: [PATCH] Fix README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix: without this flag, get this error: ``` ~$ mkdir $HOME/.local/share/signal-api mkdir: cannot create directory ‘/home/ubuntu/.local/share/signal-api’: No such file or directory ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 247a1a2..210dcda 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ and [many more](https://bbernhard.github.io/signal-cli-rest-api/) This allows you to update `signal-cli-rest-api` by just deleting and recreating the container without the need to re-register your signal number ```bash -$ mkdir $HOME/.local/share/signal-api +$ mkdir -p $HOME/.local/share/signal-api ```