Skip to content

Commit

Permalink
Take a guess.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeingold35 committed Sep 20, 2023
1 parent f5b99d0 commit 42bda19
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ jobs:
run: |
# Figure out where the tarball is first.
RAW_TARBALL_PATH=$(find ~/downloads/tarball -name "salesforce-sfdx-scanner*.tgz")
echo $RAW_TARBALL_PATH
# Next, to allow compatibility with Windows, replace backslashes with forward slashes
# and tear off a leading `C:`.
ADJUSTED_TARBALL_PATH=`echo $RAW_TARBALL_PATH | tr '\\' '/'`
echo $ADJUSTED_TARBALL_PATH
ADJUSTED_TARBALL_PATH=`[[ $ADJUSTED_TARBALL_PATH = C* ]] && echo $ADJUSTED_TARBALL_PATH | cut -d':' -f 2 || echo $ADJUSTED_TARBALL_PATH`
echo $ADJUSTED_TARBALL_PATH
# Pipe in a `y` to simulate agreeing to install an unsigned package. Use a URI of the file's full path.
Expand Down

0 comments on commit 42bda19

Please sign in to comment.