File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,5 @@ before_install:
104
104
- if [[ "$CORDOVA_PLATFORM" == "android" ]]; then yes | sdkmanager "build-tools;26.0.0" "platforms;android-26" ; fi
105
105
106
106
script :
107
- - node -v
108
- - npm -v
109
107
- bash ./test/test-default.sh $CORDOVA_VERSION $CORDOVA_PLATFORM $CORDOVA_PLATFORM_VERSION
110
- - node -v
111
- - npm -v
112
108
- if [[ "$CORDOVA_PLATFORM" == "android" ]]; then bash ./test/test-with-3-plugins.sh $CORDOVA_VERSION $CORDOVA_PLATFORM $CORDOVA_PLATFORM_VERSION cordova-plugin-request-location-accuracy cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release; fi
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ FOLDER=".build-$PLATFORM"
10
10
rm -rf $FOLDER
11
11
12
12
npm install -g " cordova@$CORDOVA_VERSION "
13
- ./node_modules/.bin/ cordova create $FOLDER com.github.cordova_plugin_firebase HelloWorld
13
+ cordova create $FOLDER com.github.cordova_plugin_firebase HelloWorld
14
14
cp ./test/google-services.json $FOLDER
15
15
16
16
cd $FOLDER
17
17
18
- ../node_modules/.bin/ cordova platform add " $PLATFORM @$PLATFORM_VERSION "
18
+ cordova platform add " $PLATFORM @$PLATFORM_VERSION "
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ PLATFORM_VERSION=$3
9
9
FOLDER=" .build-$PLATFORM "
10
10
cd $FOLDER
11
11
12
- ../node_modules/.bin/ cordova build $PLATFORM
12
+ cordova build $PLATFORM
Original file line number Diff line number Diff line change 19
19
fi
20
20
21
21
if [[ " $PLUGIN " == " cordova-android-play-services-gradle-release" ]]; then
22
- ../node_modules/.bin/ cordova plugin add $PLUGIN --variable PLAY_SERVICES_VERSION=+ $FETCH_COMMAND --save
22
+ cordova plugin add $PLUGIN --variable PLAY_SERVICES_VERSION=+ $FETCH_COMMAND --save
23
23
elif [[ " $PLUGIN " == " cordova-android-firebase-gradle-release" ]]; then
24
- ../node_modules/.bin/ cordova plugin add $PLUGIN --variable FIREBASE_VERSION=+ $FETCH_COMMAND --save
24
+ cordova plugin add $PLUGIN --variable FIREBASE_VERSION=+ $FETCH_COMMAND --save
25
25
else
26
- ../node_modules/.bin/ cordova plugin add $PLUGIN $FETCH_COMMAND
26
+ cordova plugin add $PLUGIN $FETCH_COMMAND
27
27
fi
You can’t perform that action at this time.
0 commit comments