utils/build-galaxy-release.sh: Fix default namespace and collection name

The default namespace and collection name was not set due to using ":"
instead of "-" while setting the variables internally.
This commit is contained in:
Thomas Woerner
2020-11-30 16:04:32 +01:00
parent 1647149808
commit 4d6023207e

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//")