mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2026-01-25 12:22:17 +01:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
export default function getOS(platform: string): string {
|
|
switch (platform) {
|
|
case 'linux':
|
|
return 'Linux';
|
|
case 'darwin':
|
|
return 'macOS';
|
|
case 'win32':
|
|
return 'Windows';
|
|
default:
|
|
throw new Error(`${platform} is not supported`);
|
|
}
|
|
}
|