1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/scripts/_common.sh

32 lines
818 B
Bash
Raw Normal View History

#!/bin/bash
2017-09-18 21:40:05 +02:00
2019-05-30 20:51:22 +02:00
#=================================================
# COMMON VARIABLES AND CUSTOM HELPERS
2019-05-30 20:51:22 +02:00
#=================================================
debian_maj_version=$(sed 's/\..*//' /etc/debian_version)
if [ "$debian_maj_version" -eq 9 ] ; then
weblate_pypath="python3.5"
elif [ "$debian_maj_version" -eq 10 ] ; then
weblate_pypath="python3.7"
elif [ "$debian_maj_version" -eq 11 ] ; then
weblate_pypath="python3.9"
2024-01-18 13:12:54 +01:00
elif [ "$debian_maj_version" -eq 12 ] ; then
weblate_pypath="python3.11"
fi
set_forge_variables() {
2022-08-11 20:32:44 +02:00
if [ $used_forge = "GitHub" ] ; then
2023-01-12 10:23:56 +01:00
github_username="$forge_username"
github_token="$forge_token"
gitlab_username="None"
gitlab_token="None"
else
github_username="None"
github_token="None"
2023-01-12 10:23:56 +01:00
gitlab_username="$forge_username"
gitlab_token="$forge_token"
fi
}