mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
7 lines
139 B
Bash
Executable file
7 lines
139 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Convert Stylus to CSS.
|
|
# npm -g install stylus
|
|
#
|
|
sed -i "s|@import 'nib'|//@import 'nib'|g" *.styl
|
|
ls *.styl | xargs stylus
|