Skip to content

Commit db0aef7

Browse files
committed
fixing encoding issue with \ for enroll command (#74379)
1 parent e0e24e9 commit db0aef7

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/enrollment_instructions/manual

1 file changed

+2
-2
lines changed

x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/enrollment_instructions/manual/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ export const ManualInstructions: React.FunctionComponent<Props> = ({
3636
systemctl enable elastic-agent
3737
systemctl start elastic-agent`;
3838

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

4242
return (
4343
<>

0 commit comments

Comments
 (0)