This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Russian Wheat Pancakes | |
Grandpa Wily | |
3/4 c whole wheat | |
1 c milk | |
2 T sugar | |
1/4 t salt | |
2 t baking powder | |
2 eggs | |
1/2 c oil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -en "* Incrementing Deployment:" | |
version=`cat VERSION_NUMBER` | |
version=$((version+1)) | |
echo -n "$version" > VERSION_NUMBER | |
sed -i '' "s/{{VERSION}}/$version/g" ../index.html | |
echo -e " Done.\n\n" |