Skip to content

Commit

Permalink
REFACTOR-78: Set universal path to interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
grafviktor committed Oct 6, 2024
1 parent d19d861 commit 9cbe72e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
with:
go-version: 1.23
cache: true
- name: Setup Tools
run: sudo apt-get update && sudo apt-get install ffmpeg && go install github.com/charmbracelet/[email protected]
- name: Install system packages
run: sudo apt-get update > /dev/null && sudo apt-get install ffmpeg > /dev/null
- name: Install VHS utility
run: go install github.com/charmbracelet/[email protected]
- name: Build Binary
run: go build -o gg ./cmd/goto/*.go
- name: Run integration tests
Expand Down
3 changes: 2 additions & 1 deletion e2e/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
#!/usr/bin/env bash

set -e
cd $(dirname "$(readlink -f "$0")")

TMP_HOME=temp
HOSTS_FILE="${TMP_HOME}"/hosts.yaml
Expand Down

0 comments on commit 9cbe72e

Please sign in to comment.