Create a secrets file:
touch ~/.secret
Make sure it looks like this:
#!/bin/bash
Create a secrets file:
touch ~/.secret
Make sure it looks like this:
#!/bin/bash
#!/bin/bash | |
# Disclaimer: never got this to work properly and have not attempted it since. | |
# This will require about 30GB of space, still in experimental phase right now | |
sudo gem install iesd | |
cd /Applications # Or wherever you hve the "Install 10.12 Developer Preview.app" available | |
iesd -i Install\ 10.12\ Developer\ Preview.app -o macos.dmg -t BaseSystem | |
hdiutil convert macos.dmg -format UDSP -o macos.sparseimage |
#!/bin/bash | |
for f in *.sass; do sass-convert $f ${f%sass}scss ; done | |
rm *.scss |