mirror of
https://github.com/oleid/gnome-shell-teatime.git
synced 2022-04-29 18:53:50 +00:00
13 lines
186 B
Bash
13 lines
186 B
Bash
#!/bin/sh
|
|
|
|
SRC_DIR=$(dirname $0)
|
|
echo $SRC_DIR
|
|
|
|
for fn in "${SRC_DIR}"/src/*.js ; do
|
|
js-beautify --replace \
|
|
--indent-with-tabs \
|
|
--end-with-newline \
|
|
--jslint-happy \
|
|
$fn
|
|
done
|