diff options
author | Brian Picciano <me@mediocregopher.com> | 2024-01-06 15:49:14 +0100 |
---|---|---|
committer | Brian Picciano <me@mediocregopher.com> | 2024-01-06 15:49:14 +0100 |
commit | f814ddd972c76e96b2c82cfed6bef2f07cdfc48e (patch) | |
tree | 26f3f1306014453a6a8a292cae432991af28e816 | |
parent | e9376727205a888806104f20eaeb812d19d84e0c (diff) |
use bash for shipped scripts
-rwxr-xr-x | bin/go-playground | 2 | ||||
-rwxr-xr-x | bin/quick-reboot | 2 | ||||
-rwxr-xr-x | bin/quick-shutdown | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/go-playground b/bin/go-playground index b1b9661..d973cd3 100755 --- a/bin/go-playground +++ b/bin/go-playground @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e -x diff --git a/bin/quick-reboot b/bin/quick-reboot index 9f7b751..8b6e77f 100755 --- a/bin/quick-reboot +++ b/bin/quick-reboot @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e diff --git a/bin/quick-shutdown b/bin/quick-shutdown index f5a5259..f07cde6 100755 --- a/bin/quick-shutdown +++ b/bin/quick-shutdown @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e |