6 lines
No EOL
219 B
Bash
Executable file
6 lines
No EOL
219 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl sass
|
|
cd static/css
|
|
curl https://raw.githubusercontent.com/BatteredBunny/common-web-styles/main/common.scss --remote-name
|
|
sass -C common.scss common.css
|
|
rm common.scss |