matryer/goblueprints

Ch 5. setup.sh/setup.bat

Closed this issue · 1 comments

This code will not Work on windows :

#!/bin/bash
export SP_TWITTER_KEY=yCwwKKnuBnUBrelyTN...
export SP_TWITTER_SECRET=6on0YRYniT1sI3f...
export SP_TWITTER_ACCESSTOKEN=2427-13677...
export SP_TWITTER_ACCESSSECRET=SpnZf336u...

The Windows version would be:

SET SP_TWITTER_KEY=yCwwKKnuBnUBrelyTN...
SET SP_TWITTER_SECRET=6on0YRYniT1sI3f...
SET SP_TWITTER_ACCESSTOKEN=2427-13677...
SET SP_TWITTER_ACCESSSECRET=SpnZf336u...

See http://tldp.org/LDP/abs/html/dosbatch.html for details

Thank you.