From 3001c5c18990f085414dbb14c9a51593edb8721c Mon Sep 17 00:00:00 2001 From: Guthrie McAfee Armstrong Date: Thu, 12 Apr 2018 00:34:21 -0400 Subject: [PATCH] Replace "/bin/bash" with "/usr/bin/env bash" --- gitfiti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitfiti.py b/gitfiti.py index f30d19303..5519ab27d 100755 --- a/gitfiti.py +++ b/gitfiti.py @@ -302,7 +302,7 @@ def commit(commitdate): def fake_it(image, start_date, username, repo, git_url, offset=0, multiplier=1): template = ( - '#!/bin/bash\n' + '#!/usr/bin/env bash\n' 'REPO={0}\n' 'git init $REPO\n' 'cd $REPO\n'