Skip to content

Commit

Permalink
chore: use gradle binary
Browse files Browse the repository at this point in the history
  • Loading branch information
phani-srikar committed Jul 14, 2023
1 parent 24b1478 commit 6271369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/amplify-codegen-e2e-core/src/init/android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function androidBuild(cwd: string, settings: Object = {}): Promise<void>
return new Promise((resolve, reject) => {
const s = { ...defaultSettings, ...settings };

const chain = spawn('gradlew', ['build'], {
const chain = spawn('gradle', ['build'], {
cwd,
stripColors: true,
disableCIDetection: s.disableCIDetection,
Expand Down
2 changes: 1 addition & 1 deletion packages/amplify-codegen-e2e-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"private": true,
"scripts": {
"e2e": "npm run setup-profile && jest --verbose",
"e2e": "npm run setup-profile && jest --verbose --forceExit",
"setup-profile": "ts-node ./src/configure_tests.ts",
"clean-e2e-resources": "ts-node ./src/cleanup-e2e-resources.ts",
"clean-cb-e2e-resources": "ts-node ./src/cleanup-cb-e2e-resources.ts"
Expand Down

0 comments on commit 6271369

Please sign in to comment.