Skip to content

Commit

Permalink
try #7
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkermichael committed Oct 17, 2022
1 parent 710ef39 commit 0d7fadb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/reusable-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,7 @@ jobs:
tar -zxvf helm-v3.9.4-linux-amd64.tar.gz
sudo mv linux-amd64/helm /usr/local/bin/helm
wget http://ftp.gnu.org/pub/gnu/make/make-3.81.tar.bz2
tar xfj make-3.81.tar.bz2
./configure
make
sudo make install
sudo apt install make
- run: mkdir -p ${{ env.TEST_RESULTS }}

Expand Down
3 changes: 2 additions & 1 deletion acceptance/framework/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ func NewCLI() (*CLI, error) {
fmt.Println("CLI: " + string(b))
cmd = exec.Command("make", "cli-dev")
cmd.Dir = "../../.."
_, err := cmd.Output()
b, err := cmd.Output()
fmt.Println("Output: " + string(b))
return &CLI{true}, err
}

Expand Down

0 comments on commit 0d7fadb

Please sign in to comment.