10000 fixing bashism in custom 'move around' loop · pfdevilliers/scikit-learn@bfd36aa · GitHub
[go: up one dir, main page]

Skip to content

Commit bfd36aa

Browse files
committed
fixing bashism in custom 'move around' loop
1 parent 5308cad commit bfd36aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ override_dh_pysupport:
7070
: # Move scikits. space into a compatibility package
7171
find debian -wholename \*scikits -type d | while read skd; do \
7272
skbd=$$(dirname $$skd); \
73-
skbd_=$${skbd//sklearn/scikits-learn}; \
73+
skbd_=$$(echo $$skbd | sed -e 's/sklearn/scikits-learn/g'); \
7474
mkdir -p $$skbd_; \
7575
mv $$skd $$skbd_; \
7676
done

0 commit comments

Comments
 (0)
0