mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 17:26:12 +00:00
fix(): fix error message
This commit is contained in:
parent
af3ba7edb0
commit
84524e9175
|
@ -12,7 +12,7 @@ import (
|
|||
func ResolveScript(dir, name string) (string, error) {
|
||||
script := path.Clean(path.Join(dir, fmt.Sprintf("%s.sh", name)))
|
||||
if !strings.HasPrefix(script, dir) {
|
||||
return "", errors.New("Invalid script path: " + script)
|
||||
return "", errors.New("Invalid script path: " + name)
|
||||
}
|
||||
if _, err := os.Stat(script); os.IsNotExist(err) {
|
||||
return "", errors.New("Script not found: " + script)
|
||||
|
|
Loading…
Reference in New Issue
Block a user