From cec8e18d2b3b926271af0f1c95315b45679ee325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Wed, 7 Oct 2015 10:17:35 -0400 Subject: [PATCH] gpg can't sign multiple files at once, use a loop --- docs/development.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development.rst b/docs/development.rst index d5b77369c..a4efc14d4 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -138,7 +138,7 @@ With virtual env activated:: pip install pyinstaller>=3.0 # or git checkout master pyinstaller -F -n borg-PLATFORM --hidden-import=logging.config borg/__main__.py - gpg --armor --detach-sign dist/borg-* + for file in dist/borg-*; do gpg --armor --detach-sign $file; done If you encounter issues, see also our `Vagrantfile` for details.