Skip to content

Commit 967fd08

Browse files
committed
Fix accidental 2 space indent
This is a good place to mention that (while I still do 4 space indent for perl code) I use 2 space indent almost everywhere else, and always in Bash. But this isn't my project so sticking with convention here.
1 parent 2ef0c49 commit 967fd08

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bin/cpan-install-dist-deps

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
set -e -u -o pipefail
44

55
main() (
6-
[[ -e cpanfile ]] &&
7-
cpm-install "$@"
6+
[[ -e cpanfile ]] &&
7+
cpm-install "$@"
88

9-
[[ -e Build.PL ]] &&
10-
build-and-install-deps
9+
[[ -e Build.PL ]] &&
10+
build-and-install-deps
1111

12-
true
12+
true
1313
)
1414

1515
cpm-install() (

0 commit comments

Comments
 (0)