Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

Commit

Permalink
Bumped to 0.2.1, fixed bug with temp dir not honoring -d option
Browse files Browse the repository at this point in the history
  • Loading branch information
gshively11 committed Mar 5, 2015
1 parent 792577d commit cbb2df0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.1 (February 5, 2015)

Bug Fixes:

- Fixed write perm issue with temp directory not honoring -d option

## 0.2.0 (February 5, 2015)

Features:
Expand Down
2 changes: 1 addition & 1 deletion lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (!program.repo)

var repoName = path.basename(program.repo, '.git');
var repoDir = path.resolve(program.cloneDirectory, repoName);
var tempDir = path.resolve(__dirname, '../temp', program.environment);
var tempDir = path.resolve(program.cloneDirectory, 'temp', program.environment);
var tempFile = path.resolve(tempDir, '.kibana_data');

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kibana4-backup",
"version": "0.2.0",
"version": "0.2.1",
"description": "Backup, restore, and deploy changes to your Kibana4 instances",
"main": "kibana4-backup.js",
"scripts": {
Expand Down

0 comments on commit cbb2df0

Please sign in to comment.