Skip to content

Commit

Permalink
Create parent directies if not existant
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHood committed Oct 31, 2018
1 parent 597fc37 commit a7fbde1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,9 @@ You can get securely in touch with me [here](http://contact.nicohood.de). My GPG

## Version History
```
1.3.3 (31.10.2018)
* Create parent directories if not existant.
1.3.2 (15.04.2018)
* Change directory to git root path, so "git archive" is working properly
Expand Down
4 changes: 2 additions & 2 deletions gpgit.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
VERSION="1.3.2"
VERSION="1.3.3"

# Avoid any encoding problems
export LANG=C
Expand Down Expand Up @@ -486,7 +486,7 @@ msg "4. Create a signed release archive"
if [[ ! -d "${OUTPUT}" ]]; then
plain "Creating not existing output directory: '${OUTPUT}'."
interactive
mkdir "${OUTPUT}"
mkdir -p "${OUTPUT}"
fi

# Create new archive
Expand Down

0 comments on commit a7fbde1

Please sign in to comment.