Skip to content

Commit 2a65faa

Browse files
committed
Fix names in build script
1 parent 1348d8e commit 2a65faa

3 files changed

Lines changed: 57 additions & 56 deletions

File tree

build.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set -x
33

44
BRANCH=${BRANCH:=master}
55
TAG=${TAG:=dev-${BRANCH//[\/]/-}}
6-
EXECUTOR_IMAGE="processmaker/-docker-executor-php:${TAG}"
6+
EXECUTOR_IMAGE="processmaker/spark-docker-executor-php:${TAG}"
77

88
pushd src
9-
if [[ ! -d "-sdk-php" ]]; then
10-
git clone --branch $BRANCH --depth 1 https://github.com/ProcessMaker/-sdk-php.git
9+
if [[ ! -d "spark-sdk-php" ]]; then
10+
git clone --branch $BRANCH --depth 1 https://github.com/ProcessMaker/spark-sdk-php.git
1111
fi
1212
rm -rf composer.lock
1313
rm -rf vendor
@@ -16,6 +16,4 @@ pushd src
1616
popd
1717

1818
docker build -t $EXECUTOR_IMAGE .
19-
rm -rf src/-sdk-php
20-
21-
# docker push $EXECUTOR_IMAGE
19+
rm -rf src/spark-sdk-php

src/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"repositories": [
33
{
44
"type": "path",
5-
"url": "./-sdk-php"
5+
"url": "./spark-sdk-php"
66
}
77
],
88
"require": {
99
"guzzlehttp/guzzle": "~6.0",
10-
"ProcessMaker/-sdk-php": "*@dev"
10+
"ProcessMaker/spark-sdk-php": "*@dev"
1111
},
1212
"require-dev": {
1313
"phpunit/phpunit": "^7",

src/composer.lock

Lines changed: 51 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)