Skip to content

Commit

Permalink
Merge pull request #4 from bornwitbugs/sortie
Browse files Browse the repository at this point in the history
sorting the output of the list command for asthetic and functional reasons
  • Loading branch information
rnagy committed Jun 8, 2020
2 parents 6b2d990 + 14936a0 commit 69e6b75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ tree()

show_list()
{
for _f in $(cd ${OPM_STORE} && find . -name '*.sig' 2>/dev/null); do
for _f in $(cd ${OPM_STORE} && find . -name '*.sig' 2>/dev/null | sort); do
if [ -z ${_BATCH} ]; then
_d=${_f%/*}
until [[ ${_d} == '.' ]]; do
Expand Down

0 comments on commit 69e6b75

Please sign in to comment.