Skip to content

Commit 676791b

Browse files
committed
Make "dry-run" mode the default
1 parent 70cd91e commit 676791b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/migrate-tags.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ remote='origin'
66
release_commits_regex='^\d\{1,3\}\.\d\{1,3\}\.\d\{1,3\}'
77
version_before_package_rename='0.0.0'
88
tag_prefix_before_package_rename="$1"
9-
dry_run=false
9+
dry_run=true
1010

1111
while [[ $# -gt 0 ]]; do
1212
key="$1"
@@ -32,8 +32,8 @@ while [[ $# -gt 0 ]]; do
3232
shift # past argument
3333
shift # past value
3434
;;
35-
-d | --dry-run)
36-
dry_run=true
35+
-r | --non-dry-run)
36+
dry_run=false
3737
shift # past argument
3838
shift # past value
3939
;;

0 commit comments

Comments
 (0)