From 018c47ddf94ab357861fad0ed90f391bf8617423 Mon Sep 17 00:00:00 2001 From: Ben Cotton Date: Thu, 11 Jul 2024 16:46:42 -0400 Subject: [PATCH] Fix the shebang on the e2e script by 1. Removing a [zero-width no-break space](https://www.compart.com/en/unicode/U+FEFF)before the `#!` 2. Changing the path from `/bin/env` to `/usr/bin/env`, which is correct on most (all?) modern Unix-like systems. Signed-off-by: Ben Cotton --- internal/testing/e2e/e2e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/testing/e2e/e2e b/internal/testing/e2e/e2e index 805d96dcc7..92f1bec098 100755 --- a/internal/testing/e2e/e2e +++ b/internal/testing/e2e/e2e @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/usr/bin/env bash # # Copyright 2023 The GUAC Authors.