We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aae3dc commit d6dd753Copy full SHA for d6dd753
scripts/build.sh
@@ -46,7 +46,9 @@ cp -rf scripts/generate-certificate.sh $output_dir/install
46
chmod +x $output_dir/install/genInventoryFile.py
47
chmod +x $output_dir/install/generate-certificate.sh
48
49
-cp -a "${CONTIV_ARTIFACT_STAGING}/ansible" ${output_dir}/
+if [ -d ${CONTIV_ARTIFACT_STAGING}/ansible ]; then
50
+ cp -a "${CONTIV_ARTIFACT_STAGING}/ansible" ${output_dir}/
51
+fi
52
53
# Replace versions
54
files=$(find $output_dir -type f -name "*.yaml" -or -name "*.sh" -or -name "*.json")
0 commit comments