Skip to content

Commit

Permalink
merge RPM and DEB as they are the same command (elastic#24209)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattapperson committed Oct 18, 2018
1 parent 7d0eaed commit 46d1a81
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class EnrollBeat extends React.Component<BeatsProps, any> {
<EuiFlexGroup gutterSize="s" alignItems="center">
<EuiFlexItem grow={false}>
<EuiTitle size="xs">
<h3>Select your operating system:</h3>
<h3>Select your platform:</h3>
</EuiTitle>
</EuiFlexItem>
</EuiFlexGroup>
Expand All @@ -149,7 +149,7 @@ export class EnrollBeat extends React.Component<BeatsProps, any> {
options={[
{
value: `sudo ${this.state.beatType}`,
label: 'DEB',
label: 'DEB / RPM',
},
{
value: `PS C:\\Program Files\\${capitalize(this.state.beatType)}> ${
Expand All @@ -161,10 +161,6 @@ export class EnrollBeat extends React.Component<BeatsProps, any> {
value: `./${this.state.beatType}`,
label: 'MacOS',
},
{
value: `sudo ${this.state.beatType}`,
label: 'RPM',
},
]}
onChange={(e: any) => this.setState({ command: e.target.value })}
fullWidth={true}
Expand Down

0 comments on commit 46d1a81

Please sign in to comment.