Skip to content

Commit

Permalink
Fix shellcheck warnings (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnboyes authored Nov 23, 2021
1 parent 386f8d5 commit 41cc90a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh

export RUNNER_GITHUB_WORKSPACE_PATH=$1
export RUNNER_HOVERFLY_INSTALL_PATH=$RUNNER_GITHUB_WORKSPACE_PATH/bin
export CONTAINER_HOVERFLY_INSTALL_PATH=$GITHUB_WORKSPACE/bin
export RUNNER_GITHUB_WORKSPACE_PATH="$1"
export RUNNER_HOVERFLY_INSTALL_PATH="$RUNNER_GITHUB_WORKSPACE_PATH/bin"
export CONTAINER_HOVERFLY_INSTALL_PATH="$GITHUB_WORKSPACE/bin"
export HOVERFLY_PLATFORM=linux_amd64
export HOVERFLY_VERSION=$INPUT_VERSION
export HOVERFLY_VERSION="$INPUT_VERSION"
export HOVERFLY_BUNDLE=hoverfly_bundle_$HOVERFLY_PLATFORM
export HOVERFLY_DOWNLOAD_URL=https://github.com/SpectoLabs/hoverfly/releases/download/

Expand Down

0 comments on commit 41cc90a

Please sign in to comment.