From 9886dd8c4206d1d48f399c73b77a5327fe2c3b04 Mon Sep 17 00:00:00 2001 From: Fred Wright Date: Wed, 2 Dec 2020 18:02:25 -0800 Subject: [PATCH] fetch-macos.py: Fix shebang line. The proper form for a generic Python shebang line is: #!/usr/bin/env python This locates 'python' in the current PATH. TESTED: Now runs the expected Python. --- tools/FetchMacOS/fetch-macos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/FetchMacOS/fetch-macos.py b/tools/FetchMacOS/fetch-macos.py index ec0b189..d659229 100755 --- a/tools/FetchMacOS/fetch-macos.py +++ b/tools/FetchMacOS/fetch-macos.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python """fetch-macos.py: Fetches macOS products from Apple's SoftwareUpdate service."""