Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pirackr committed Mar 2, 2024
1 parent b60723e commit 8769ef6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/install
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env bash

set -e
set -o pipefail

ASDF_INSTALL_TYPE=${ASDF_INSTALL_TYPE:-version }
[ -n "$ASDF_INSTALL_VERSION" ] || (echo >&2 'Missing ASDF_INSTALL_VERSION' && exit 1)
Expand All @@ -15,7 +13,7 @@ install_telepresence() {

mkdir -p "${bin_install_path}"

if [ $version=~"^[0-9].\+" ]; then
if [ "$version" =~ "^[0-9].\+" ]; then
url_version="v$version"
else
url_version=$version
Expand Down
Binary file added tel/bin/telepresence
Binary file not shown.

0 comments on commit 8769ef6

Please sign in to comment.