9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
cd static/OTF/
|
|
|
|
for otf in *
|
|
do
|
|
install -Dm644 $otf "$1/usr/share/fonts/TTF/$(printf $otf|sed 's/.otf/.ttf/')"
|
|
done
|