Skip to content

Commit

Permalink
Merge pull request #10 from baptistecolin/master
Browse files Browse the repository at this point in the history
fixes #9
  • Loading branch information
danielpclark committed Oct 9, 2017
2 parents b1dc481 + a739649 commit bdb8814
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
#!/bin/bash

rust_install_status=`rustc --version`
rustc_prefix="rustc"

# Checking if Rust is installed
if [[ $rust_install_status == $rustc_prefix* ]];
if [ `which rustc` ];
then
# Rust is installed
echo "Rust already installed"
Expand Down

0 comments on commit bdb8814

Please sign in to comment.