fix typoÄ

This commit is contained in:
Tobias Powalowski 2023-01-09 09:18:35 +01:00
parent c4df9b3e91
commit 90abcf845e
2 changed files with 2 additions and 2 deletions

View file

@ -130,7 +130,7 @@ _select_source() {
_getsource || return 1
else
if [[ ${_S_NET} -eq 0 ]]; then
check_nework || return 1
_check_network || return 1
fi
[[ "${_RUNNING_ARCH}" == "x86_64" ]] && dotesting
_getsource || return 1

View file

@ -6,7 +6,7 @@ _net_interfaces() {
}
# check for already active profile
_check_nework() {
_check_network() {
[[ "${_S_NET}" == "1" ]] || _donetwork
}