about summary refs log tree commit diff stats
path: root/common
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-01 12:40:04 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-01 12:40:04 +0100
commit7ff02f973a5ed4e00ae2be28062878f7db11bfca (patch)
tree79ebee4a52b5a096a2a6c3fd06435619bac5ed1b /common
parentfix(common/scripts/optimize_images.sh): Generate extension only on basename (diff)
downloadflake-templates-7ff02f973a5ed4e00ae2be28062878f7db11bfca.tar.gz
flake-templates-7ff02f973a5ed4e00ae2be28062878f7db11bfca.zip
fix(common/shell_line_editor.sh): Mark as non-executable
Diffstat (limited to 'common')
-rw-r--r--common/shell_line_editor.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/shell_line_editor.sh b/common/shell_line_editor.sh
index 8d6833a..a142706 100644
--- a/common/shell_line_editor.sh
+++ b/common/shell_line_editor.sh
@@ -1,6 +1,8 @@
-#! /usr/bin/env sh
+#! /usr/bin/env false
 # Taken in verbatim from: https://unix.stackexchange.com/a/113450, and somewhat changed
 
+# shellcheck shell=dash
+
 LE_print_debug() {
     LE_debug="$1"
     LE_debug_msg="$2"
@@ -245,3 +247,5 @@ LE() {
     echo
     return "$LE_ret"
 }
+
+# vim: ft=sh