6 lines
101 B
Bash
6 lines
101 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# [de]compress static assets
|
||
|
|
||
|
find web/ui/static -type f -exec gzip "$@" {} \;
|