Fix up Makefile to work with sh and not bash.

This commit is contained in:
Joe Gregorio
2012-03-02 13:33:09 -08:00
parent d02bf5ee38
commit ece1da33ac
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ prerelease:
release: prerelease
@echo "This target will upload a new release to PyPi and code.google.com hosting."
@echo "Are you sure you want to proceed? (yes/no)"
@read yn; [ "yes" == $$yn ]
@read yn; if [ yes -ne $(yn) ]; then exit 1; fi
@echo "Here we go..."
cd snapshot; python setup.py sdist --formats=gztar,zip register upload
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py
@@ -66,7 +66,7 @@ oauth2_prerelease:
oauth2_release: oauth2_prerelease
@echo "This target will upload a new release to PyPi and code.google.com hosting."
@echo "Are you sure you want to proceed? (yes/no)"
@read yn; [ "yes" == $$yn ]
@read yn; if [ yes -ne $(yn) ]; then exit 1; fi
@echo "Here we go..."
cd snapshot; python setup.py sdist --formats=gztar,zip register upload
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py

View File

@@ -48,7 +48,7 @@ long_desc = """The Google API Client for Python is a client library for
accessing the Plus, Moderator, and many other Google APIs."""
setup(name="google-api-python-client",
version="1.0beta7",
version="1.0beta8",
description="Google API Client Library for Python",
long_description=long_desc,
author="Joe Gregorio",