From b9c4521bbbed7c0610e42098263635785ba7319d Mon Sep 17 00:00:00 2001 From: Viktor Benei Date: Mon, 25 Jan 2016 12:42:02 +0100 Subject: [PATCH] install_wrap gen fix --- bitrise.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitrise.yml b/bitrise.yml index e8d58943..b461365d 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -140,9 +140,9 @@ workflows: title: Creating release install_wrap inputs: - content: |- - template_path = "./_scripts/install_wrap.md.template" + template_path = "./_scripts/install_wrap.sh.template" puts " * template_path: #{template_path}" - target_path = "./_scripts/install_wrap.md" + target_path = "./_scripts/install_wrap.sh" puts " * target_path: #{target_path}" template_content = File.read(template_path) final_content = template_content.gsub("{{version}}", ENV['RELEASE_VERSION'])