Summary
Determines whether the build script running on a Linux based system.
- Namespace
- Cake
.Common - Containing Type
- EnvironmentAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Platform")]
public static bool IsRunningOnLinux(this ICakeContext context)
Examples
if (IsRunningOnLinux())
{
Information("Linux!");
}
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Cake |
An attribute used for documentation of alias methods/properties. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
Return Value
Type | Description |
---|---|
bool |
true if the build script running on a Linux based system; otherwise false .
|