os: remove commented code in home_dir() function (#24929)

This commit is contained in:
Laurent Cheylus 2025-07-20 05:20:56 +02:00 committed by GitHub
parent e3b07d9ddc
commit 04f90f0f2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -542,9 +542,6 @@ pub fn home_dir() string {
$if windows { $if windows {
return getenv('USERPROFILE') return getenv('USERPROFILE')
} $else { } $else {
// println('home_dir() call')
// res:= os.getenv('HOME')
// println('res="$res"')
return getenv('HOME') return getenv('HOME')
} }
} }