Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .docksal/commands/init
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ fin exec composer clear-cache --no-interaction
fin exec COMPOSER_PROCESS_TIMEOUT=2000
fin exec COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction

# Allow exiting to configure project before install.
read -p "Do you want to run BLT setup (y/n)?" -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
exit 1
fi

# Set up blt
cd $DOCROOT_PATH
fin blt setup --no-interaction
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install:
- fin sysinfo

before_script:
- fin init
- echo y | fin init

script:
- fin test
- fin test