Replace hashes with underscores
This commit is contained in:
parent
2143237c7f
commit
2aa1549499
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ do
|
||||||
;;
|
;;
|
||||||
"--project-codename"|"-p")
|
"--project-codename"|"-p")
|
||||||
shift
|
shift
|
||||||
PROJECT_CODENAME="${1}"
|
PROJECT_CODENAME="${1//-/_}"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
"--version"|"-v")
|
"--version"|"-v")
|
||||||
|
@ -134,4 +134,4 @@ do
|
||||||
sed -i "s/__url__/${URL}/g" "${file}"
|
sed -i "s/__url__/${URL}/g" "${file}"
|
||||||
sed -i "s/__license__/${LICENSE}/g" "${file}"
|
sed -i "s/__license__/${LICENSE}/g" "${file}"
|
||||||
sed -i "s/__description__/${DESCRIPTION}/g" "${file}"
|
sed -i "s/__description__/${DESCRIPTION}/g" "${file}"
|
||||||
done <<< "$(find "${destination_path}/" -type f)"
|
done <<< "$(find "${destination_path}/" -type f)"
|
||||||
|
|
Loading…
Reference in a new issue