Skip to content

Commit

Permalink
Added quick test to see if composer is on the system.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiah committed Sep 14, 2021
1 parent 39c7719 commit da53de4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions INSTALL
Expand Up @@ -43,8 +43,12 @@ wget https://github.com/jasonmunro/cypht/archive/master.zip
# unpack the archive
unzip master.zip

# run composer
cd cypht-master && composer install && cd ..
# run composer if it's there
if [ -x /usr/bin/composer ]; then
cd cypht-master && composer install && cd ..
else
echo "You may need to install php's composer."
fi

# create a vanilla ini file
cp cypht-master/hm3.sample.ini cypht-master/hm3.ini
Expand Down

0 comments on commit da53de4

Please sign in to comment.