Skip to content

Commit

Permalink
fix(cli): build command template (#3961)
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Mar 3, 2023
1 parent f0200f4 commit 9ae7e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions detox/local-cli/init.js
Expand Up @@ -93,13 +93,13 @@ function createDefaultConfigurations() {
'android.debug': {
type: 'android.apk',
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk',
build: 'cd android ; ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug ; cd -',
build: 'cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
reversePorts: [8081],
},
'android.release': {
type: 'android.apk',
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk',
build: 'cd android ; ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release ; cd -',
build: 'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
},
},
devices: {
Expand Down

0 comments on commit 9ae7e9d

Please sign in to comment.