Fix up Makefile to work with sh and not bash.
This commit is contained in:
4
Makefile
4
Makefile
@@ -39,7 +39,7 @@ prerelease:
|
|||||||
release: prerelease
|
release: prerelease
|
||||||
@echo "This target will upload a new release to PyPi and code.google.com hosting."
|
@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)"
|
@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..."
|
@echo "Here we go..."
|
||||||
cd snapshot; python setup.py sdist --formats=gztar,zip register upload
|
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
|
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
|
oauth2_release: oauth2_prerelease
|
||||||
@echo "This target will upload a new release to PyPi and code.google.com hosting."
|
@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)"
|
@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..."
|
@echo "Here we go..."
|
||||||
cd snapshot; python setup.py sdist --formats=gztar,zip register upload
|
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
|
wget "http://support.googlecode.com/svn/trunk/scripts/googlecode_upload.py" -O googlecode_upload.py
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -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."""
|
accessing the Plus, Moderator, and many other Google APIs."""
|
||||||
|
|
||||||
setup(name="google-api-python-client",
|
setup(name="google-api-python-client",
|
||||||
version="1.0beta7",
|
version="1.0beta8",
|
||||||
description="Google API Client Library for Python",
|
description="Google API Client Library for Python",
|
||||||
long_description=long_desc,
|
long_description=long_desc,
|
||||||
author="Joe Gregorio",
|
author="Joe Gregorio",
|
||||||
|
|||||||
Reference in New Issue
Block a user