From cbdcb968185d9723f13ca71d8d339fd9114048ac Mon Sep 17 00:00:00 2001 From: Hunter Wittenborn Date: Wed, 28 Apr 2021 00:05:44 -0500 Subject: [PATCH] Updated sh section to use /usr/bin/env The `sh` section currently autofills to `/bin/sh`. This just changes it to fill to `/usr/bin/env sh` to align with the other options. --- snippets/language-shellscript.cson | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/language-shellscript.cson b/snippets/language-shellscript.cson index 68bd8c6..d20ce0d 100644 --- a/snippets/language-shellscript.cson +++ b/snippets/language-shellscript.cson @@ -7,7 +7,7 @@ 'body': '#!/usr/bin/env bash\n' '#!/bin/sh': 'prefix': 'sh' - 'body': '#!/bin/sh\n' + 'body': '#!/usr/bin/env sh\n' '#!/usr/bin/env zsh': 'prefix': 'zsh' 'body': '#!/usr/bin/env zsh\n'