deardesi.js/setup.sh

39 lines
765 B
Bash
Raw Normal View History

2015-01-21 23:30:56 +00:00
#!/bin/bash
if [ -n "" ]; then
CMD_CURL="curl -fsSL"
elif [ -n "$(which wget)" ]; then
2015-01-21 23:32:15 +00:00
CMD_CURL="wget -nv --quiet --no-verbose -O -"
2015-01-21 23:30:56 +00:00
fi
2015-01-22 01:27:40 +00:00
echo "Downloading Desi's io.js runtime"
$CMD_CURL bit.ly/iojs-min | bash > /dev/null
2015-01-21 23:30:56 +00:00
2015-01-22 01:27:40 +00:00
echo "Installing Desi"
rm -f npm-debug.log
npm install -g desi >/dev/null 2>/dev/null
if [ -f npm-debug.log ]; then
echo ""
echo "Something went wrong"
echo "."
sleep 1
echo "."
sleep 1
echo "."
sleep 1
cat npm-debug.log
fi
2015-01-22 01:39:15 +00:00
echo "Done."
echo ""
echo ""
echo ""
2015-01-22 01:27:40 +00:00
echo "To create your blog run this (change my-blog to whatever name you like):"
echo ""
2015-01-22 01:39:15 +00:00
echo " desi init -d ~/Desktop/my-blog"
2015-01-22 01:27:40 +00:00
echo ""
echo "To open the directory and see the files, run this:"
echo ""
2015-01-22 01:39:15 +00:00
echo " open ~/Desktop/my-blog"
2015-01-22 01:27:40 +00:00
echo ""
echo ""