From da7c31c92ef2b97926699d1d16f4251256f2b730 Mon Sep 17 00:00:00 2001 From: phiresky Date: Fri, 14 Dec 2018 10:28:00 +0100 Subject: [PATCH] fix broken shebang. the broken shebang causes the script to try to use python 2.7 if run from a different shell like zsh. --- bin/dket-venv-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dket-venv-setup b/bin/dket-venv-setup index c5405c8..304b732 100755 --- a/bin/dket-venv-setup +++ b/bin/dket-venv-setup @@ -1,4 +1,4 @@ -# !/bin/bash +#!/bin/bash PYTHON=python3 VENV_DIR=.py3venv