Skip to content

Commit 277644f

Browse files
committed
Fix a bug that causes uname to fail on OSX.
1 parent 7b43f11 commit 277644f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.2.2
2+
* [#9: Fix a bug that causes `uname` command to fail on OSX.](https://github.com/haensl/openssl-certgen/issues/9)
3+
14
## 1.2.1
25
* [#7: Update description.](https://github.com/haensl/openssl-certgen/issues/7)
36

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
src_dir := $(shell pwd)
2-
platform := $(shell uname -o)
2+
platform := $(shell uname)
33
bin := openssl-generate-certificates
44
man := $(bin).1.gz
55
THIS_FILE := $(lastword $(MAKEFILE_LIST))

0 commit comments

Comments
 (0)