Skip to content

Commit ac67bd1

Browse files
committed
fix: remove force from fetch tags
1 parent 803fb92 commit ac67bd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ export default class Package {
478478

479479
// fetch remote tags
480480
if ( this.git.upstream ) {
481-
res = await this.git.exec( [ "fetch", "--tags", "--force" ] );
481+
res = await this.git.exec( [ "fetch", "--tags" ] );
482482
if ( !res.ok ) return res;
483483
}
484484

0 commit comments

Comments
 (0)