Merge pull request #460 from t-woerner/build-galaxy-release_args

utils/build-galaxy-release.sh: Fix default namespace and collection name
This commit is contained in:
Rafael Guterres Jeffman
2020-11-30 12:09:37 -03:00
committed by GitHub

View File

@@ -1,7 +1,7 @@
#!/bin/bash
namespace="${1:freeipa}"
collection="${2:ansible_freeipa}"
namespace="${1-freeipa}"
collection="${2-ansible_freeipa}"
collection_prefix="${namespace}.${collection}"
galaxy_version=$(git describe --tags | sed -e "s/^v//")