diff options
author | Daniel Carl <danielcarl@gmx.de> | 2017-05-15 22:27:28 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2017-05-15 22:27:28 +0200 |
commit | fc41555aaf0b9269c690bfde5f3e4f5928ad1ebe (patch) | |
tree | 1a77289377731698a3285a6138725b605909f054 /src/scripts | |
parent | b6ecafa5533ff5147f459847db79bd62c4760d3c (diff) |
Add space after sed -e option #388.
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/js2h.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/js2h.sh b/src/scripts/js2h.sh index 81425fc..0efeaea 100755 --- a/src/scripts/js2h.sh +++ b/src/scripts/js2h.sh @@ -15,7 +15,7 @@ fi # Put file extension and _ before file name, turn all to upper case to get the # constant name. -CONSTANT=$(echo "$FILE" | sed -e 's:.*/::g' -e's/.*\.css$/CSS_&/g' -e's/.*\.js$/JS_&/g' -e's/\.css$//' -e's/\.js$//' | tr a-z A-Z) +CONSTANT=$(echo "$FILE" | sed -e 's:.*/::g' -e 's/.*\.css$/CSS_&/g' -e 's/.*\.js$/JS_&/g' -e 's/\.css$//' -e 's/\.js$//' | tr a-z A-Z) # minify the script cat $FILE | \ |