From b341e2e350d4b3a9513a91eb5e3c62564657382d Mon Sep 17 00:00:00 2001 From: Vu Cong Tuan Date: Tue, 7 Nov 2017 13:12:59 +0700 Subject: [PATCH] =?UTF-8?q?Do=20not=20use=20=E2=80=9C-y=E2=80=9D=20for=20p?= =?UTF-8?q?ackage=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to "code conventions" [1], do not use "-y" option. Instead, use apt-get install package, yum install package, or zypper install package. [1] https://docs.openstack.org/doc-contrib-guide/writing-style/ code-conventions.html Change-Id: Idb0c9c0cc64b28b12c7b511bc8985c829a8a5984 --- doc/source/contributor/dev-quickstart.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/contributor/dev-quickstart.rst b/doc/source/contributor/dev-quickstart.rst index cecd84cf..a11e4dc3 100644 --- a/doc/source/contributor/dev-quickstart.rst +++ b/doc/source/contributor/dev-quickstart.rst @@ -117,9 +117,9 @@ it, follow the instructions for installing prerequisites above and - On Fedora 23:: - sudo dnf install -y dnf-plugins-core - sudo dnf copr enable -y mstuchli/Python3.5 - dnf install -y python35-python3 + sudo dnf install dnf-plugins-core + sudo dnf copr enable mstuchli/Python3.5 + dnf install python35-python3 Python Prerequisites --------------------