Skip to content

Commit c89eb02

Browse files
author
David Heinemeier Hansson
committed
Fix open-ended range in case
1 parent 1c54413 commit c89eb02

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/install/esbuild/install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
when 7.1...8.0
99
run %(npm set-script build "#{build_script}")
1010
run %(yarn build)
11-
when 8.0..
11+
when (8.0..)
1212
run %(npm pkg set scripts.build="#{build_script}")
1313
run %(yarn build)
1414
else

lib/install/rollup/install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
when 7.1...8.0
1010
run %(npm set-script build "#{build_script}")
1111
run %(yarn build)
12-
when 8.0..
12+
when (8.0..)
1313
run %(npm pkg set scripts.build="#{build_script}")
1414
run %(yarn build)
1515
else

lib/install/webpack/install.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
when 7.1...8.0
1010
run %(npm set-script build "#{build_script}")
1111
run %(yarn build)
12-
when 8.0..
12+
when (8.0..)
1313
run %(npm pkg set scripts.build="#{build_script}")
1414
run %(yarn build)
1515
else

0 commit comments

Comments
 (0)