Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 50c53b3

Browse files
committed
fixed typo
1 parent 7086a73 commit 50c53b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ subprojects {
5151
sourceCompatibility = 1.8
5252
targetCompatibility = 1.8
5353

54-
project.version += project.hasProperty('versionSufix') ? project.property('versionSufix') : ''
54+
project.version += project.hasProperty('versionSuffix') ? project.property('versionSuffix') : ''
5555

5656
repositories {
5757
mavenCentral()

ci/travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "develop" ]
1414
# Develop Branch
1515
echo -e 'Build Branch with Snapshot => Branch ['$TRAVIS_BRANCH']'
1616
export ORG_GRADLE_PROJECT_releaseType=snapshot
17-
./gradlew -PversionSufix=".BUILD-SNAPSHOT" clean build artifactoryPublish --stacktrace
17+
./gradlew -PversionSuffix=".BUILD-SNAPSHOT" clean build artifactoryPublish --stacktrace
1818
elif [ "$TRAVIS_PULL_REQUEST" == "false" ] && [[ "$TRAVIS_BRANCH" == release/* ]] && [ "$TRAVIS_TAG" == "" ]; then
1919
# Release Branch
2020
echo -e 'Build Branch for Release => Branch ['$TRAVIS_BRANCH']'
@@ -33,5 +33,5 @@ else
3333
# Feature Branch
3434
echo -e 'Build Branch => Branch ['$TRAVIS_BRANCH']'
3535
export ORG_GRADLE_PROJECT_releaseType=snapshot
36-
./gradlew clean -PversionSufix=".BUILD-SNAPSHOT" build artifactoryPublish --stacktrace
36+
./gradlew clean -PversionSuffix=".BUILD-SNAPSHOT" build artifactoryPublish --stacktrace
3737
fi

0 commit comments

Comments
 (0)