mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
8 lines
139 B
Bash
8 lines
139 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Convert Stylus to CSS.
|
||
|
|
# npm -g install stylus
|
||
|
|
#
|
||
|
|
sed -i "s|@import 'nib'|//@import 'nib'|g" *.styl
|
||
|
|
ls *.styl | xargs stylus
|