7 lines
94 B
Bash
Executable file
7 lines
94 B
Bash
Executable file
#!/bin/sh
|
|
|
|
process() {
|
|
sassc -tcompressed "css/${1}.scss" > "css/${1}.css"
|
|
}
|
|
|
|
process "main"
|