From 0c28b139624d5349851920f6d22126faede71388 Mon Sep 17 00:00:00 2001 From: Alexey Korolev Date: Mon, 21 Sep 2020 11:08:05 +0300 Subject: [PATCH] Move homebrew target below others in the bootstrap target (#149) --- CHANGELOG.md | 5 +++++ {{ cookiecutter.name }}/Makefile | 2 +- {{ cookiecutter.name }}/README.md | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 343e01f..238ea33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.1] - 2020-09-21 +### Fixed +- Перенес homebrew target на первое место в bootstrap make таргете чтобы он вызывался +первым при разворачивании проекта. + ## [1.2.0] - 2020-09-21 ### Removed - Удален Carthage, менеджер зависимостей заменен на Swift Package Manager. diff --git a/{{ cookiecutter.name }}/Makefile b/{{ cookiecutter.name }}/Makefile index 9cb1366..cf9673a 100644 --- a/{{ cookiecutter.name }}/Makefile +++ b/{{ cookiecutter.name }}/Makefile @@ -3,7 +3,7 @@ BREW := /usr/local/bin/brew all: bootstrap ## bootstrap: Bootstrap project dependencies for development -bootstrap: hook certs homebrew +bootstrap: homebrew hook certs mint bootstrap ## certs: Download Apple certificates for development diff --git a/{{ cookiecutter.name }}/README.md b/{{ cookiecutter.name }}/README.md index 65e202e..141d848 100644 --- a/{{ cookiecutter.name }}/README.md +++ b/{{ cookiecutter.name }}/README.md @@ -21,7 +21,7 @@ Also, some environment parameters need to be set: The project was generated using the [cookiecutter tool](https://github.com/audreyr/cookiecutter) and [this](https://github.com/alphatroya/swift-project-template) swift template. -Template version: 1.2.0 +Template version: 1.2.1 ## Copyright