Skip to content

Commit

Permalink
Update fit-f-droid.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Feb 8, 2024
1 parent da393c3 commit b7ae719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fit-f-droid.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ const projectRoot = path.join(__dirname, '..');
const expoLocationPath = path.join(projectRoot, 'node_modules', 'expo-location');
const expoApplicationPath = path.join(projectRoot, 'node_modules', 'expo-application');

await Promise.all([fs.unlink(expoLocationPath), fs.unlink(expoApplicationPath)]);
await Promise.all([fs.remove(expoLocationPath), fs.remove(expoApplicationPath)]);
await Promise.all([fs.copy(path.join(projectRoot, 'libs', 'expo-location'), expoLocationPath), fs.copy(path.join(projectRoot, 'libs', 'expo-application'), expoApplicationPath)]);

0 comments on commit b7ae719

Please sign in to comment.