summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2014-01-20 13:50:04 -0500
committerScott Moser <smoser@ubuntu.com>2014-01-20 13:50:04 -0500
commitb2ebae64a7b9738db6c6408cee4adc2bf2f178de (patch)
tree4d3ed7c28b8c775710f75e002d239b49a6731904 /tools
parentcbc5af7396743e014f1ad9ece0bb56820d26f484 (diff)
parent5f3bb991ac48e31075e32167efa9aad74cdc1296 (diff)
downloadvyos-cloud-init-b2ebae64a7b9738db6c6408cee4adc2bf2f178de.tar.gz
vyos-cloud-init-b2ebae64a7b9738db6c6408cee4adc2bf2f178de.zip
merge requirement changes
This splits up 'Requires' into requirements.txt and test-requirements.txt to differenciate the build dependencies and runtime dependencies. one sticky thing still exists in that the packages/bddeb doesn't: - list any Build-Depends - address versions in the requirements.txt
Diffstat (limited to 'tools')
-rwxr-xr-xtools/read-dependencies4
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