mirror of
https://github.com/aclist/dztui.git
synced 2025-05-09 20:23:01 +02:00
Fix redundant download process
This commit is contained in:
parent
e6c489b1a6
commit
bc2610e0d7
2 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
||||||
- Group main menu categories
|
- Group main menu categories
|
||||||
### Fixed
|
### Fixed
|
||||||
- Encapsulate window strings to prevent arguments leaking into title
|
- Encapsulate window strings to prevent arguments leaking into title
|
||||||
|
- Remove extraneous download process that was slowing down startup
|
||||||
|
|
||||||
## [2.7.0-rc.23] 2022-10-03
|
## [2.7.0-rc.23] 2022-10-03
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
2
dzgui.sh
2
dzgui.sh
|
@ -1301,7 +1301,7 @@ check_version(){
|
||||||
[[ -f $config_file ]] && source $config_file
|
[[ -f $config_file ]] && source $config_file
|
||||||
[[ -z $branch ]] && branch="stable"
|
[[ -z $branch ]] && branch="stable"
|
||||||
check_branch
|
check_branch
|
||||||
[[ ! -d "$HOME/dzgui" ]] && freedesktop_dirs
|
[[ ! -d "$freedesktop_path" ]] && freedesktop_dirs
|
||||||
if [[ $version == $upstream ]]; then
|
if [[ $version == $upstream ]]; then
|
||||||
check_unmerged
|
check_unmerged
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue