mirror of
https://github.com/oleid/gnome-shell-teatime.git
synced 2022-04-29 18:53:50 +00:00
9 lines
119 B
Bash
9 lines
119 B
Bash
#!/bin/sh
|
|
|
|
SRC_DIR=$(dirname $0)
|
|
echo $SRC_DIR
|
|
|
|
for fn in "${SRC_DIR}"/src/*.js ; do
|
|
js-beautify -t -n -r -j $fn
|
|
done
|