diff --git a/scripts/test-android.sh b/scripts/test-android.sh index 55607b4c..c01741b2 100755 --- a/scripts/test-android.sh +++ b/scripts/test-android.sh @@ -1,4 +1,5 @@ -JAVA_OPTS=-XX:MaxHeapSize=6g yarn turbo run run:android:release --cache-dir=.turbo/android +cd example +JAVA_OPTS=-XX:MaxHeapSize=6g yarn run:android:release --cache-dir=.turbo/android adb forward tcp:9000 tcp:9000 echo "Polling in-app server..." node ./scripts/poll-in-app-server.js \ No newline at end of file diff --git a/scripts/turnOnLibsql.js b/scripts/turnOnLibsql.js index 6e13c013..402a52bd 100644 --- a/scripts/turnOnLibsql.js +++ b/scripts/turnOnLibsql.js @@ -1,7 +1,5 @@ const fs = require('fs'); -console.log('Current working directory:', process.cwd()); - // Read the package.json file const packageJson = JSON.parse(fs.readFileSync('./example/package.json')); @@ -14,5 +12,3 @@ fs.writeFileSync( './example/package.json', JSON.stringify(packageJson, null, 2) ); - -console.log('package.json updated successfully!');