From 8ef5c24abd55d3fe7dafe93687be5928e0152c02 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 22 Feb 2026 23:22:48 -0600 Subject: fix: correct broken shebangs in zfssnapshot and zfsrollback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #!/bin/env bash doesn't exist — changed to #!/usr/bin/env bash. --- custom/zfssnapshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'custom/zfssnapshot') diff --git a/custom/zfssnapshot b/custom/zfssnapshot index 749ea5a..98f8315 100755 --- a/custom/zfssnapshot +++ b/custom/zfssnapshot @@ -1,4 +1,4 @@ -#!/bin/env bash +#!/usr/bin/env bash # Craig Jennings # Create a ZFS snapshot across all datasets with a dated, descriptive name. -- cgit v1.2.3