Skip to content

Commit 1c733e8

Browse files
chore: use portable shebangs consistently (#3141)
use portable shebangs consistently
1 parent ebcaccd commit 1c733e8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.hooks/pre-commit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/bin/sh
1+
#!/usr/bin/env sh
22

33
make

scripts/doc-comments.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
out=$(grep -nr "^--- @" lua)
44

scripts/help-update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/usr/bin/env sh
22

33
# run after changing nvim-tree.lua DEFAULT_OPTS or keymap.lua M.default_on_attach
44
# scrapes and updates nvim-tree-lua.txt

scripts/luals-check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/usr/bin/env sh
22

33
# Performs a lua-language-server check on all files.
44
# luals-out/check.json will be produced on any issues, returning 1.

0 commit comments

Comments
 (0)