diff options
Diffstat (limited to 'tools/read-dependencies')
-rwxr-xr-x | tools/read-dependencies | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/read-dependencies b/tools/read-dependencies index 3335f6a4..f89391bc 100755 --- a/tools/read-dependencies +++ b/tools/read-dependencies @@ -19,10 +19,10 @@ if ! find_root; then "exist in the cloud-init root directory." fi -REQUIRES="$ROOT_DIR/Requires" +REQUIRES="$ROOT_DIR/requirements.txt" if [ ! -e "$REQUIRES" ]; then - fail "Unable to find 'Requires' file located at '$REQUIRES'" + fail "Unable to find 'requirements.txt' file located at '$REQUIRES'" fi # Filter out comments and empty lines |