2
2
şunun yansıması https://github.com/Hilbis/Hilbish eşitlendi 2025-07-02 01:02:03 +00:00

fix: return cmdstr in alias resolve instead of nothing

Bu işleme şunda yer alıyor:
sammyette 2023-09-30 23:25:03 -04:00
ebeveyn 4421869b85
işleme a5b6fc8eda
İmzalayan: sammyette
GPG Anahtar Kimliği: 904FC49417B44DCD

Dosyayı Görüntüle

@ -53,7 +53,7 @@ func (a *aliasModule) Resolve(cmdstr string) string {
args, _ := splitInput(cmdstr)
if len(args) == 0 {
// this shouldnt reach but...????
return
return cmdstr
}
for a.aliases[args[0]] != "" {