Skip to content

Commit

Permalink
[7.9] fixing encoding issue with \ for enroll command (#74379) (#74407)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricDavisX committed Aug 5, 2020
1 parent ac9efe4 commit d8b4064
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export const ManualInstructions: React.FunctionComponent<Props> = ({
systemctl enable elastic-agent
systemctl start elastic-agent`;

const windowsCommand = `.\elastic-agent enroll ${enrollArgs}
./install-service-elastic-agent.ps1`;
const windowsCommand = `.\\elastic-agent enroll ${enrollArgs}
.\\install-service-elastic-agent.ps1`;

return (
<>
Expand Down

0 comments on commit d8b4064

Please sign in to comment.