Skip to content

Commit

Permalink
Corrected syntax of lowercase command
Browse files Browse the repository at this point in the history
  • Loading branch information
mahype committed Nov 9, 2018
1 parent f1d2af5 commit 21b265b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dc() {
PREFIX="$(basename ${PREFIX})"
PREFIX="${PREFIX// /}"
PREFIX="${PREFIX//./}"
PREFIX=$(tr [:lower:] "${PREFIX}")
PREFIX=$(echo "$PREFIX" | tr '[:upper:]' '[:lower:]')

echo "${PREFIX}_${1}_1"
}
Expand Down

0 comments on commit 21b265b

Please sign in to comment.