1
0

zsh: update
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-23 21:46:04 +03:00
parent 0289d90fb9
commit 47b2170058
14 changed files with 72 additions and 53 deletions

View File

@@ -5,7 +5,7 @@ function {
local -a p
local -aU t npath games
p=( $path )
p=( ${path} )
## strip "games" first :)
t=( ${(@)p:#*games*} )
@@ -36,9 +36,9 @@ function {
## finally... games! xD
npath+=( /usr/local/games /usr/games )
npath+=( $games )
npath+=( ${games} )
path=( $npath )
path=( ${npath} )
hash -f
}