Skip to content

Commit

Permalink
Update java-radar dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Wan committed Nov 14, 2014
1 parent ce248c7 commit 1af0c3b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions android-radar/build_jar.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@
import tempfile
import shutil

java_radar_tag = 'v0.0.6'
java_radar_tag = 'v0.0.7'

def get_build_dir(root_dir):
return os.path.join(root_dir, 'build')

def prep_directory(root_dir):
build_dir = get_build_dir(root_dir)
if not os.path.isdir(build_dir):
os.makedirs(build_dir)
if os.path.isdir(build_dir):
shutil.rmtree(build_dir)
os.makedirs(build_dir)

def execute_command(name, args):
print(name + '...')
Expand Down

0 comments on commit 1af0c3b

Please sign in to comment.