Skip to content

Commit f28f424

Browse files
committed
Dup the ARGV strings
1 parent e79ac66 commit f28f424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/enterprise-cutter

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require 'nokogiri'
66

77
%x(git checkout -b add-backfilled-versions)
88

9-
date = ARGV[0] # yyyy, mm, dd, like, 2014-07-08
10-
version = ARGV[1] # like, 11.10.340
9+
date = ARGV[0].dup # yyyy, mm, dd, like, 2014-07-08
10+
version = ARGV[1].dup # like, 11.10.340
1111

1212
temp_dir = Dir.mktmpdir
1313
begin

0 commit comments

Comments
 (0)