From edc62c82e32c3e3d44ddaff3405095e05755d5a9 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg <grin@lbry.io> Date: Tue, 25 Apr 2017 12:28:07 -0400 Subject: [PATCH] working on fixing appveyor build --- build/release_on_tag.py | 1 + build/zip_daemon.py | 1 + 2 files changed, 2 insertions(+) diff --git a/build/release_on_tag.py b/build/release_on_tag.py index 225cf348e..6edfc61a6 100644 --- a/build/release_on_tag.py +++ b/build/release_on_tag.py @@ -10,6 +10,7 @@ import uritemplate def main(): + print "release_on_tag.py called" this_dir = os.path.dirname(os.path.realpath(__file__)) try: current_tag = subprocess.check_output( diff --git a/build/zip_daemon.py b/build/zip_daemon.py index ef3f5e222..03d50e3a8 100644 --- a/build/zip_daemon.py +++ b/build/zip_daemon.py @@ -6,6 +6,7 @@ import zipfile def main(): + print "zip_daemon.py called" this_dir = os.path.dirname(os.path.realpath(__file__)) tag = subprocess.check_output(['git', 'describe']).strip() zipfilename = 'lbrynet-daemon-{}-{}.zip'.format(tag, get_system_label())