Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit 306bc7a

Browse files
author
NerdOfCode
authored
Update run.sh
Updated for all dependencies
1 parent 64131cb commit 306bc7a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

run.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ check_commands(){
4343
echo "Please install 'sed'..."
4444
exit_status=1
4545
fi
46+
47+
if [[ ! $(command -v make) ]]
48+
then
49+
echo "Please install 'make'..."
50+
exit_status=1
51+
fi
52+
53+
if [[ ! $(command -v gcc) ]]
54+
then
55+
echo "Please install 'gcc'..."
56+
exit_status=1
57+
fi
4658

4759
if [[ $exit_status -eq 1 ]]
4860
then

0 commit comments

Comments
 (0)