tech_notes

A collection of notes on setups and implementations.
Log | Files | Refs | README

commit 8a29b4f6f9a445136fe1cbf9b64c1f3bd5f49fa4
parent 095c1f974ff0b0cb10df92dae9aaae526d5bd33e
Author: Julian Piribauer <julian.piribauer@gmail.com>
Date:   Thu, 19 Feb 2026 18:55:57 +0100

Correcting shell

Diffstat:
Mstagit.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/stagit.md b/stagit.md @@ -14,7 +14,7 @@ Finally, all these public repos are listed in /var/www/git/index.html. Create /usr/local/bin/update-stagit.sh with ```bash -#!/bin/bash +#!/bin/sh set -eu @@ -72,7 +72,7 @@ We now set up a post-receive hook that creates the folder structure for new repo Inside /srv/git/template/hooks/post-receive: ```bash -#!/bin/bash +#!/bin/sh /usr/local/bin/update-stagit.sh ```