Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
feat: new framwork support added
Browse files Browse the repository at this point in the history
Signed-off-by: Animesh <[email protected]>
  • Loading branch information
Sonichigo committed Oct 17, 2023
1 parent fd3d4dd commit 82bd73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ elif [[ "$COMMAND" =~ .*"node".* ]]; then
echo sudo -E keploy test -c "${COMMAND}" --delay ${DELAY} --path ${KEPLOY_PATH}
sudo -E keploy test -c "${COMMAND}" --delay ${DELAY} --path ${KEPLOY_PATH}

elif [[ "$COMMAND" =~ .*"java".* ]] || [[ "$COMMAND" =~ .*"mvn".* ]]: then
elif [[ "$COMMAND" =~ .*"java".* ]] || [[ "$COMMAND" =~ .*"mvn".* ]]; then
echo "Java is present."
mvn clean install
echo 'Test Mode Starting 🎉'
echo sudo -E keploy test -c "${COMMAND}" --delay ${DELAY} --path ${KEPLOY_PATH}
sudo -E keploy test -c "${COMMAND}" --delay ${DELAY} --path ${KEPLOY_PATH}

elif [[ "$COMMAND" =~ .*"python".* ]] || [[ "$COMMAND" =~ .*"python3".* ]]: then
elif [[ "$COMMAND" =~ .*"python".* ]] || [[ "$COMMAND" =~ .*"python3".* ]]; then
echo "Python is present."
pip install -r requirements.txt
echo 'Test Mode Starting 🎉'
Expand Down

0 comments on commit 82bd73f

Please sign in to comment.