Remove spaces in archive names and fix readme

This commit is contained in:
ViViDboarder 2016-07-26 18:38:37 -07:00
parent b82e18781b
commit a501c6a12f
2 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,7 @@ package-combined:
@echo "Docset generated!"
archive:
find *.docset -depth 0 | xargs -I '{}' sh -c 'tar --exclude=".DS_Store" -czf "$$(echo {} | sed "s/\.[^.]*$$//").tgz" "{}"'
find *.docset -depth 0 | xargs -I '{}' sh -c 'tar --exclude=".DS_Store" -czf "$$(echo {} | sed -e "s/\.[^.]*$$//" -e "s/ /_/").tgz" "{}"'
@echo "Archives created!"
clean-index:

View File

@ -15,5 +15,6 @@ Dependencies
------------
Currently these are not auto resolved. You must install the following:
* github.com/coopernurse/gorp
* github.com/mattn/go-sqlite3