Skip to content

Commit

Permalink
Merge pull request #35 from imos/experimental
Browse files Browse the repository at this point in the history
Merge.
  • Loading branch information
imos committed Sep 23, 2014
2 parents e0cc146 + 385aab0 commit 521b50e
Show file tree
Hide file tree
Showing 131 changed files with 2,561 additions and 1,383 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
concat:
@echo '#!/bin/bash' >imosh
@echo "# Last update: $$(git log --date=iso --pretty=format:'%cd (%h)' library | head -n 1)" >>imosh
@echo '#' >>imosh
@for library in library/*.sh; do \
@echo '# imos is a utility library for BASH.' >>imosh
@echo '' >>imosh
@echo "IMOSH_VERSION='$$(git log --pretty=format:'%ci (%h)' library | head -n 1)'" >>imosh
@echo '' >>imosh
@for library in library/*.sh library/*/*.sh; do \
cat "$${library}"; \
echo; \
done >>imosh
Expand All @@ -13,5 +15,5 @@ test: concat
bash --version
env
bash -c shopt
@if ! bash test/main.sh test/*_test.sh; then exit 1; fi
@if ! bash test/main.sh test/*_test.sh test/*/*_test.sh; then exit 1; fi
.PHONY: test
Loading

0 comments on commit 521b50e

Please sign in to comment.