summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@koumbit.org>2015-10-07 10:17:35 -0400
committerAntoine Beaupré <anarcat@koumbit.org>2015-10-07 10:17:35 -0400
commitcec8e18d2b3b926271af0f1c95315b45679ee325 (patch)
treecc6d24296432c588cf9fd65d4466ae0572d288bc /docs
parent48c8186592c5eca272d7f864153f7ff2fab0863f (diff)
gpg can't sign multiple files at once, use a loop
Diffstat (limited to 'docs')
-rw-r--r--docs/development.rst2
1 files changed, 1 insertions, 1 deletions
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.