We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09de3e0 + ef7d186 commit 8e93a16Copy full SHA for 8e93a16
CHANGELOG.md
@@ -1,6 +1,10 @@
1
CHANGELOG
2
=========
3
4
+## 0.4.1 - *9/22/2015*
5
+
6
+- Support systems where uuidgen creates lowercase UUIDs
7
8
## 0.4.0 - *9/22/2015*
9
10
- Renamed the `destroy` command to `drop`.
jsonlite.sh
@@ -2,7 +2,7 @@
set -e
-VERSION="0.4.0"
+VERSION="0.4.1"
COMMAND=$1
CWD=$(pwd);
@@ -27,7 +27,7 @@ case "$COMMAND" in
27
fi
28
29
# Is this portable across distros?
30
- UUID=$(uuidgen)
+ UUID=$(uuidgen | awk '{print toupper($0)}')
31
32
# Piping to python -m json.tool to pretty print json is super expensive.
33
# What would be a good alternative?
0 commit comments