Skip to content

Commit

Permalink
fix: oneclick install (#62)
Browse files Browse the repository at this point in the history
* fix: oneclick install

Signed-off-by: Ayush Sharma <[email protected]>

* small fix

Signed-off-by: Ayush Sharma <[email protected]>

* fixed typo

Signed-off-by: Ayush Sharma <[email protected]>

---------

Signed-off-by: Ayush Sharma <[email protected]>
  • Loading branch information
ayush3160 authored Sep 24, 2024
1 parent 43d50e2 commit 3b37bab
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`;
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 3b37bab

Please sign in to comment.