Skip to content

Commit

Permalink
Merge pull request #276 from go-jira/fix_228
Browse files Browse the repository at this point in the history
Fixes #228: make ':' gpg files temporary to fix go mod
  • Loading branch information
coryb authored Sep 14, 2019
2 parents b8e73a5 + 52a577e commit 71aaa88
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ schemas/*.json
/_t/attach1.txt
/_t/binary.out
/_t/foobar.bin
/_t/.password-store/GoJira/api-token:[email protected]
/_t/.password-store/GoJira/api-token:[email protected]
dist
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,18 @@ release:
version:
@echo $(CURVER)

clean:
clean: clean-password-store
rm -rf ./$(NAME)

prove:
clean-password-store:
rm -f "$(CWD)/_t/.password-store/GoJira/api-token:[email protected]"
rm -f "$(CWD)/_t/.password-store/GoJira/api-token:[email protected]"

test-password-store:
ln -s "$(CWD)/_t/.password-store/GoJira/[email protected]" "$(CWD)/_t/.password-store/GoJira/api-token:[email protected]"
ln -s "$(CWD)/_t/.password-store/GoJira/[email protected]" "$(CWD)/_t/.password-store/GoJira/api-token:[email protected]"

prove: test-password-store
chmod -R g-rwx,o-rwx $(CWD)/_t/.gnupg
OSHT_VERBOSE=1 prove -v _t/*.t

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 71aaa88

Please sign in to comment.