We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399beae commit 137235bCopy full SHA for 137235b
bin/oca_install_addons__deps_and_addons_path
@@ -27,8 +27,13 @@ env SETUPTOOLS_ODOO_POST_VERSION_STRATEGY_OVERRIDE=none \
27
>> test-requirements.txt
28
cat test-requirements.txt
29
30
-pip install -r sg_dependencies.txt
31
-pip freeze
+if [ -f sg_dependencies.txt ]; then
+ echo "No sg_dependencies.txt found"
32
+else
33
+ pip install -r sg_dependencies.txt
34
+ pip freeze
35
+fi
36
+
37
# We ensure that the test-constraints.txt file does not exist
38
if [ -e "test-constraints.txt" ]; then
39
echo "Error: test-constraints.txt already exists."
0 commit comments