Skip to content

Commit

Permalink
fix composer on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Dec 5, 2020
1 parent f75cc14 commit 7449cac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Version 0.3 (unreleased)
========================
Version 0.3
===========

* fix: make it possible to run multiple copies of the stack in parallel.
In order to achieve this, env var TESTSTACK_PROJECT_NAME has been replaced with COMPOSE_PROJECT_NAME in config file .euts.env.
In order to retain Backwards Compatibility, the old variable name is still accepted if the new one is not used.

* fix: setup.sh failed on Travis (bug introduced in 0.2)

Version 0.2
===========

Expand Down
2 changes: 1 addition & 1 deletion bin/setup/composer-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
set -e

# Avoid spending time on composer if install will later fail
if [ ! -d "vendor" ]; then
if [ ! -d "vendor" -a -L "vendor" ]; then
printf "\n\e[31mERROR:\e[0m vendor folder is not a symlink\n\n"
exit 1
fi
Expand Down

0 comments on commit 7449cac

Please sign in to comment.