Skip to content

Commit 71a1f96

Browse files
committed
Created v1.8 includes Bash Completion (issue #4)
1 parent caff244 commit 71a1f96

5 files changed

+8
-3
lines changed

makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
VER="`git tag | sort -rn | head -1 | tr -d 'v'`"
22
TARBALLLOC:=pkgs/tarball
33
PKGNAME:=unix-notes-$(VER)
4-
TARBALL=$(PKGNAME).tar
4+
TARBALL=tmp/$(PKGNAME).tar
55
GZTARBALL=$(TARBALL).gz
6-
SHATXT=$(PKGNAME).sha256.txt
6+
SHATXT=tmp/$(PKGNAME).sha256.txt
7+
OS="`uname`"
78

89
## make help Display help text
910
help:
@@ -18,6 +19,7 @@ help:
1819

1920
## make var Show makefile variables
2021
var:
22+
@echo Operating System = $(OS)
2123
@echo Latest Git tag {Version} = $(VER)
2224
@echo Tarball Location = $(TARBALLLOC)
2325
@echo Package Name = $(PKGNAME)
@@ -65,7 +67,8 @@ reinstall: uninstall install
6567
tarball:
6668
git archive $(VER) -o $(TARBALL)
6769
gzip $(TARBALL)
68-
sha256 $(GZTARBALL) | tee $(SHATXT)
70+
-test "$(OS)" = "Linux" && sha256sum $(GZTARBALL) | tee $(SHATXT)
71+
-test "$(OS)" = "FreeBSD" && sha256 $(GZTARBALL) | tee $(SHATXT)
6972
mv $(GZTARBALL) $(TARBALLLOC)
7073
mv $(SHATXT) $(TARBALLLOC)
7174

pkgs/debian/unix-notes_1.8_all.deb

11.8 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b4ed51ffe2c525b71c57bf74f26534170b6d59db6a361cfa32295ac910f936cb unix-notes_1.8_all.deb
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
128b49a8db391904a8ac598e5722b74756a3ae107fe83b089182151da1fb121b tmp/unix-notes-1.8.tar.gz

pkgs/tarball/unix-notes-1.8.tar.gz

146 KB
Binary file not shown.

0 commit comments

Comments
 (0)