Skip to content

Commit

Permalink
fix: use git pull --tags instead of git fetch --tags (#468)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Klingsbo <[email protected]>
  • Loading branch information
russellwheatley and spydon authored Mar 6, 2024
1 parent f7e0e4e commit 109f5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/melos/lib/src/common/git.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Future<void> gitFetchTags({
required MelosLogger logger,
}) async {
await gitExecuteCommand(
arguments: ['fetch', '--tags'],
arguments: ['pull', '--tags'],
workingDirectory: workingDirectory,
logger: logger,
);
Expand Down

0 comments on commit 109f5f9

Please sign in to comment.