adsdad
All checks were successful
Deploy / deploy-staging (push) Successful in 24s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-25 00:36:14 +02:00
parent ac2d95fc56
commit 487f592ca3
12 changed files with 188 additions and 17 deletions

View File

@@ -25,4 +25,14 @@ final class AppPaths
{
return self::systemAppsRoot($projectRoot) . '/' . trim($appName, '/');
}
public static function systemShellRoot(string $projectRoot): string
{
return rtrim($projectRoot, '/') . '/system/shell';
}
public static function systemShellPath(string $projectRoot, string $shellName): string
{
return self::systemShellRoot($projectRoot) . '/' . trim($shellName, '/');
}
}