gnome-shell-teatime/beautify-code.sh
2017-11-20 23:32:35 +01:00

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