Skip to content

Commit 3eee8d2

Browse files
committed
v0.30 - Fixed brew upgrade
1 parent 30ec1d1 commit 3eee8d2

8 files changed

Lines changed: 13 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,11 @@ If this repo was useful to you, feel free to buy us some coffee! :)
179179

180180
### VERSIONS
181181

182+
#### v0.30
183+
184+
- Fixed brew upgrade
185+
186+
182187
#### v0.29
183188

184189
- Changed settings.conf format to resolve paru and yay variable naming conflict that causes installations to fail

dist/getapp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# app installer #
55
#################
66

7-
VER="v0.29"
7+
VER="v0.30"
88
CYAN='\033[0;36m'
99
GREEN='\033[1;32m'
1010
NC='\033[0m'

dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<a target="_blank" href="https://github.com/hkdb/app"><img class="logo" src="github.png"></a>
8484
</div>
8585
<div>
86-
<p class="version">Latest: v0.29 (ALPHA)</p>
86+
<p class="version">Latest: v0.30 (ALPHA)</p>
8787
</div>
8888
<script>
8989
// Get the <pre> element

dist/updateapp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# app updater #
55
###############
66

7-
VER="v0.29"
7+
VER="v0.30"
88
CYAN='\033[0;36m'
99
GREEN='\033[1;32m'
1010
NC='\033[0m'

dist/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.29
1+
v0.30

macos/brew.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func Update() {
100100
func Upgrade() {
101101

102102
loadMgr()
103-
upgrade := exec.Command(mgr, "update")
103+
upgrade := exec.Command(mgr, "upgrade")
104104
utils.RunCmd(upgrade, "Upgrade Error:")
105105

106106
}
@@ -137,4 +137,4 @@ func InstallAll() {
137137

138138
func loadMgr() {
139139
mgr = env.BrewCmd
140-
}
140+
}

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
func main() {
1010

11-
utils.LogLaunchBanner("v0.29")
11+
utils.LogLaunchBanner("v0.30")
1212

1313
// Detect environment
1414
cli.GetEnv()

mgr/process.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,7 @@ func execute(m, a, p, g, c string, classic bool, tag string, sort bool) {
603603
}
604604
if env.Brew != false {
605605
fmt.Println("\nUpgrading with HOMEBREW:\n")
606+
brew.Update()
606607
brew.Upgrade()
607608
} else {
608609
fmt.Println("Brew is disabled... Skipping...\n")

0 commit comments

Comments
 (0)