Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush Sharma <kshitij3160@gmail.com>
  • Loading branch information
ayush3160 committed Sep 24, 2024
1 parent cfa1b96 commit 06229cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OneClickInstall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function executeKeployOneClickCommand(): void {
const checkKeployExistsCommand = `keploy`;

// The command to download and install Keploy
const installationCommand = `curl --silent -L https://keploy.io/install.sh -o /tmp/install.sh && chmod +x /tmp/install.sh && bash /tmp/install.sh -noRoot -patform bash`;
const installationCommand = `curl --silent -L https://keploy.io/install.sh -o /tmp/install.sh && chmod +x /tmp/install.sh && bash /tmp/install.sh -noRoot -platform bash`;
exec(checkKeployExistsCommand, (error, stdout, stderr) => {
if (error) {
// Execute the installation command
Expand Down

0 comments on commit 06229cb

Please sign in to comment.