From d7eed52fae3bbe0794908f9e0a891e4a3bfb61fe Mon Sep 17 00:00:00 2001 From: weslambert Date: Thu, 21 Apr 2022 09:46:44 -0400 Subject: [PATCH] Change -f to -r --- salt/sensoroni/files/analyzers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/sensoroni/files/analyzers/README.md b/salt/sensoroni/files/analyzers/README.md index 36d2982d8..1eb655824 100644 --- a/salt/sensoroni/files/analyzers/README.md +++ b/salt/sensoroni/files/analyzers/README.md @@ -102,7 +102,7 @@ Analyzers will often require the use of third-party packages. For example, if an Additionally, to support airgapped users, the dependency packages themselves, and any transitive dependencies, should be placed inside the `source-packages` directory. To obtain the full hierarchy of dependencies, execute the following commands: ```bash -pip download -f /requirements.txt -d /source-packages +pip download -r /requirements.txt -d /source-packages ```