Skip to content

Commit 64f3d47

Browse files
committed
fix: raising minimum stability
Rasing minimum-stability from beta to stable
1 parent d4d3896 commit 64f3d47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "enqueue/enqueue-dev",
33
"type": "project",
4-
"minimum-stability": "beta",
4+
"minimum-stability": "stable",
55
"homepage": "https://enqueue.forma-pro.com/",
66
"scripts": {
77
"cs-fix": "bin/php-cs-fixer fix",

docker/bin/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function waitForService()
1212
ATTEMPTS=0
1313
until nc -z $1 $2; do
1414
printf "wait for service %s:%s\n" $1 $2
15-
((ATTEMPTS++))
15+
ATTEMPTS=$((ATTEMPTS++))
1616
if [ $ATTEMPTS -ge $3 ]; then
1717
printf "service is not running %s:%s\n" $1 $2
1818
exit 1

0 commit comments

Comments
 (0)