Skip to content
Snippets Groups Projects
Commit 4d602320 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

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.
parent 16471498
No related branches found
No related tags found
No related merge requests found
#!/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//")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment