From f2aa8234965def882da920822e1337e90cb51415 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Tue, 21 Nov 2023 22:20:29 +0100 Subject: [PATCH] Fix shebang to python3 Python 2 is dead and the "python" command with it. macOS doesn't ship Python 2 anymore and doesn't provide "python" even as a symlink. --- gibMacOS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gibMacOS.py b/gibMacOS.py index d33eb36..2b7e9f1 100755 --- a/gibMacOS.py +++ b/gibMacOS.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from Scripts import downloader,utils,run,plist import os, shutil, time, sys, argparse, re, json