Skip to content

Commit

Permalink
Disable globbing in clone scripts (#86)
Browse files Browse the repository at this point in the history
* Disable globbing in clone scripts

* Bump version to 0.6.1

---------

Co-authored-by: Joseph Doiron <[email protected]>
  • Loading branch information
Sebastian-0 and jdoiro3 authored Mar 29, 2023
1 parent bec2b1f commit 2e29f64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Prs in Release

- [Disable globbing in clone scripts](https://github.com/jdoiro3/mkdocs-multirepo-plugin/pull/86)
- [Fix keep docs dir](https://github.com/jdoiro3/mkdocs-multirepo-plugin/pull/89)

## 0.6.0
Expand Down
1 change: 1 addition & 0 deletions mkdocs_multirepo_plugin/scripts/sparse_clone.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -f

url="$1"
name="$2"
Expand Down
1 change: 1 addition & 0 deletions mkdocs_multirepo_plugin/scripts/sparse_clone_old.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -f

url="$1"
docs_dir="$2"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mkdocs-multirepo-plugin"
version = "0.6.0"
version = "0.6.1"
description = "Build documentation in multiple repos into one site."
authors = ["jdoiro3 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 2e29f64

Please sign in to comment.