Skip to content

Commit

Permalink
Automatically determine the current SDK version. Closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Jan 12, 2015
1 parent 7b0e6dc commit 7920521
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version=1.9.15
#version=1.9.15
version=$(shell ./get_current_sdk_version.sh)

# Override VENV if not defined
VENV?=.env
Expand Down
3 changes: 3 additions & 0 deletions get_current_sdk_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

curl -s https://appengine.google.com/api/updatecheck | grep release | awk -F '\"' '{print $2}'

0 comments on commit 7920521

Please sign in to comment.