feat(main.go): renamed function

This commit is contained in:
Paul Fey 2025-02-27 18:47:16 +01:00
parent ca47bff951
commit 4d3ec3135e
4 changed files with 6 additions and 6 deletions

2
run.go
View file

@ -45,7 +45,7 @@ func run(conn net.Conn, instance string, program string, arguments string, targe
if err != nil {
return 0, err
}
if exists, err := exists(info_path); !exists || err != nil {
if exists, err := path_exists(info_path); !exists || err != nil {
return 0, errors.New("package " + program + " not found")
}