-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix failing workflow run #26
Changes from 7 commits
226f31e
418e5de
034c156
00c910c
adbd3db
5d7195b
506b8b2
066eb61
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
MESH=$1 | ||
MESHERYCTL="/usr/local/bin/mesheryctl" | ||
echo "Checking if mesheryctl is installed" | ||
|
||
|
||
if [ -f "${MESHERYCTL}" ]; then | ||
echo "Found mesheryctl, deploy $MESH" | ||
mesheryctl mesh deploy $MESH | ||
else | ||
printf "Mesheryctl not found. \nInstalling...\n" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Aisuko I'm afraid i don't understand what you mean here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @s1ntaxe770r, sorry for replying late.. I mean be careful the shell format. Some like the the indentation. |
||
curl -L https://git.io/meshery | DEPLOY_MESHERY=false bash - | ||
echo "Installed mesheryctl successfully!" | ||
mesheryctl mesh deploy $MESH | ||
|
||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check the format