Skip to content

Commit

Permalink
RC9
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stark committed Dec 4, 2019
1 parent 1026463 commit 496bcc6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.0.0-RC9 - 2019-12-04
- Fixed a bug where a .gitignore file was written instead of .my.cnf

## 1.0.0-RC8 - 2019-11-15
- More verbose SSH errors
- Default .my.cnf to prevent GTID_PURGED errors
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Craft Copy Plugin (RC8)
# Craft Copy Plugin (RC9)

This little command line tool helps to speed up common tasks around Craft CMS deployment on [fortrabbit](https://www.fortrabbit.com/). Craft Copy syncs your local development environment with your fortrabbit App — up and down. It conveniently deploys deploys code changes and synchronizes latest images and database entries. This Craft CMS plugin will be installed locally and on the fortrabbit App.

Expand Down Expand Up @@ -54,7 +54,7 @@ cd your/craft-project

# Require Craft Copy via Composer
composer config platform --unset
composer require fortrabbit/craft-copy:^1.0.0-RC8
composer require fortrabbit/craft-copy:^1.0.0-RC9

# Install the plugin with Craft CMS
php craft install/plugin copy
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fortrabbit/craft-copy",
"description": "Tooling for Craft on fortrabbit",
"type": "craft-plugin",
"version": "1.0.0-RC8",
"version": "1.0.0-RC9",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/DbExportAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function run(string $file = null)
*/
protected function assureMyCfnForMysqldump(): bool
{
$mycnfDest = Craft::getAlias("@root") . "/.gitignore";
$mycnfDest = Craft::getAlias("@root") . "/.my.cnf";
$mycnfSrc = Plugin::PLUGIN_ROOT_PATH . "/.my.cnf.example";

if (!file_exists($mycnfDest)) {
Expand Down

0 comments on commit 496bcc6

Please sign in to comment.