mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 20:04:45 +00:00
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:
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
namespace="${1:freeipa}"
|
namespace="${1-freeipa}"
|
||||||
collection="${2:ansible_freeipa}"
|
collection="${2-ansible_freeipa}"
|
||||||
collection_prefix="${namespace}.${collection}"
|
collection_prefix="${namespace}.${collection}"
|
||||||
|
|
||||||
galaxy_version=$(git describe --tags | sed -e "s/^v//")
|
galaxy_version=$(git describe --tags | sed -e "s/^v//")
|
||||||
|
|||||||
Reference in New Issue
Block a user