summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-01-01 22:44:33 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-01 22:44:33 +0100
commitf8f44e9c04716f37a6983e276715bb25e638dc4d (patch)
tree3904831064cd7c4f0c7562c401e58f83a436ce79 /themes
parented48cdc206c535c7b234ccd6e3ca968d5d243991 (diff)
Replaced `...` with $(...)
Diffstat (limited to 'themes')
-rwxr-xr-xthemes/build-themes.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/build-themes.sh b/themes/build-themes.sh
index 08b23419..40764c53 100755
--- a/themes/build-themes.sh
+++ b/themes/build-themes.sh
@@ -1,8 +1,8 @@
#!/bin/bash
-FILE_PATH="`dirname \"$0\"`"
+FILE_PATH="$(dirname \"$0\")"
-for file in `ls "${FILE_PATH}/"*.less`; do
+for file in $(ls "${FILE_PATH}/"*.less); do
filename="${file##*/}"
themeName="${filename%.less}"