Skip to content

Commit

Permalink
Fix the shebang on the e2e script by
Browse files Browse the repository at this point in the history
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 <ben@kusari.dev>
  • Loading branch information
funnelfiasco committed Jul 11, 2024
1 parent fb3d62a commit 018c47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testing/e2e/e2e
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash

#
# Copyright 2023 The GUAC Authors.
Expand Down

0 comments on commit 018c47d

Please sign in to comment.