Skip to content

Commit

Permalink
#35: Fix path to helloworld.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Rombauts committed Sep 25, 2017
1 parent 7e0d481 commit f836b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _travis/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ composer require -v --working-dir=$DOCUMENTROOT/testsite --no-interaction joomla

# Verify if component file is present
[ -f $DOCUMENTROOT/testsite/administrator/components/com_helloworld/helloworld.php ] && true || false
grep -q "echo 'Hello World\!'" helloworld.php && true || false
grep -q "echo 'Hello World\!'" $DOCUMENTROOT/testsite/administrator/components/com_helloworld/helloworld.php && true || false

# Test if the row exists in the database
COUNT=$(mysql -uroot -s -N -e "SELECT COUNT(extension_id) FROM sites_testsite.j_extensions WHERE element = 'com_helloworld';")
Expand Down

0 comments on commit f836b0d

Please sign in to comment.