-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change to submodule for dehydrated to pin the version
- Loading branch information
Alex Wilson
committed
Aug 25, 2017
1 parent
2d85e69
commit 7055748
Showing
7 changed files
with
47 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/dehydrated.tar.gz | ||
/cacert.pem | ||
/domains.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "deps/dehydrated"] | ||
path = deps/dehydrated | ||
url = https://github.com/lukas2511/dehydrated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SCRIPT= deps/dehydrated/dehydrated | ||
ARCHIVE= dehydrated.tar.gz | ||
|
||
.PHONY: archive | ||
archive: $(ARCHIVE) | ||
|
||
$(ARCHIVE): $(SCRIPT) | ||
find . -type f \ | ||
-not -path '*/.git/*' \ | ||
-not -name '.git*' \ | ||
-not -name '.travis.yml' | \ | ||
xargs tar -czf "$@" | ||
|
||
$(SCRIPT): | ||
git submodule init && git submodule update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule dehydrated
added at
0be0ab