Skip to content

Commit ea8a6cd

Browse files
Standardize directory naming for LaravelFS config paths
Updated directory naming to use "LaravelFS" instead of "laravelfs" for consistency and improved readability. This change affects both Windows and non-Windows paths in CommandsUtils. No functional behavior is altered.
1 parent c15118f commit ea8a6cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/CommandsUtils.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ private function getGlobalTemplatesPath(): string
1919
{
2020
// Determine OS-specific config directory
2121
if (windows_os()) {
22-
$configDir = (getenv('APPDATA') ?: $_SERVER['APPDATA']) . '\laravelfs';
22+
$configDir = (getenv('APPDATA') ?: $_SERVER['APPDATA']) . '\LaravelFS';
2323
} else {
24-
$configDir = (getenv('XDG_CONFIG_HOME') ?: $_SERVER['HOME']) . '\.config\laravelfs';
24+
$configDir = (getenv('XDG_CONFIG_HOME') ?: $_SERVER['HOME']) . '\.config\LaravelFS';
2525
}
2626

2727
return $configDir . '\templates.json';

0 commit comments

Comments
 (0)