Skip to content

Commit

Permalink
Update requirements.sh
Browse files Browse the repository at this point in the history
Removed backticks around the two ```which```.
  • Loading branch information
fedemaiorano authored Jun 24, 2019
1 parent 82c85d6 commit 8a3467e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ClassificationTask/requirements.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
if [ -n `which java` ]; then
if [ -n $(which java) ]; then
echo "Java is installed"
if [ -n `which R` ]; then
if [ -n $(which R) ]; then
echo "R is installed"
#this will install R library caret and LiblineaR if not already installed
Rscript requirements.R
Expand Down

1 comment on commit 8a3467e

@AliArshadswl
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm still getting problem with this file that the 'Rscript" not found.

Please sign in to comment.