Skip to content

Commit

Permalink
fix ls listing the package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jriguera committed Aug 14, 2017
1 parent ef2e48a commit 6229a56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/pip/packaging
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e -x

# Grab the latest versions that are in the directory
PIP_VERSION=$(ls -r pip/pip-*.tar.gz | sed 's/.*\/pip-\(.*\)\.tar\.gz$/\1/' | head -1)
PIP_VERSION=$(ls -r -v pip/pip-*.tar.gz | sed 's/.*\/pip-\(.*\)\.tar\.gz$/\1/' | head -1)
BOSH_PACKAGES_DIR=${BOSH_PACKAGES_DIR:-/var/vcap/packages}

echo "Extracting pip ${PIP_VERSION} ..."
Expand Down
2 changes: 1 addition & 1 deletion packages/setuptools/packaging
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e -x

# Grab the latest versions that are in the directory
SETUPTOOLS_VERSION=$(ls -r setuptools/setuptools-*.tar.gz | sed 's/.*\/setuptools-\(.*\)\.tar\.gz$/\1/' | head -1)
SETUPTOOLS_VERSION=$(ls -r -v setuptools/setuptools-*.tar.gz | sed 's/.*\/setuptools-\(.*\)\.tar\.gz$/\1/' | head -1)
BOSH_PACKAGES_DIR=${BOSH_PACKAGES_DIR:-/var/vcap/packages}

echo "Extracting setuptools ${SETUPTOOLS_VERSION} ... "
Expand Down

0 comments on commit 6229a56

Please sign in to comment.