6 lines
86 B
Bash
6 lines
86 B
Bash
|
#!/bin/bash -e
|
||
|
for d in src/*; do
|
||
|
echo "migrating ${d}..."
|
||
|
mp-migrate "${d}"
|
||
|
done
|