writing convention: do not use “-y” for package install

refer to:
https://docs.openstack.org/contributor-guide/writing-style/ \
code-conventions.html

Change-Id: I2b59c5ff02d38c2e15e728feadd123aaa6137ff0
This commit is contained in:
chao liu
2017-08-26 20:10:15 -07:00
parent d14cf4b15b
commit 43d389968e
+4 -4
View File
@@ -22,20 +22,20 @@ Installing system dependencies
.. code-block:: bash
# Install development tools
sudo apt-get install -y git python-tox
sudo apt-get install git python-tox
# Install dependency build requirements
sudo apt-get install -y libffi-dev libssl-dev python-dev gcc
sudo apt-get install libffi-dev libssl-dev python-dev gcc
**Fedora 23:**
.. code-block:: bash
# Install development tools
sudo dnf install -y git python-tox
sudo dnf install git python-tox
# Install dependency build requirements
sudo dnf install -y gcc libffi-devel openssl-devel redhat-rpm-config
sudo dnf install gcc libffi-devel openssl-devel redhat-rpm-config
Setting up a virtual environment
--------------------------------