1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
From: Jochen Sprickerhof <git@jochen.sprickerhof.de>
Date: Tue, 30 Jan 2024 08:16:13 +0100
Subject: Switch scripts/ to python3
---
scripts/bloom-export-upstream | 2 +-
scripts/bloom-generate | 2 +-
scripts/bloom-release | 2 +-
scripts/bloom-update | 2 +-
scripts/git-bloom-branch | 2 +-
scripts/git-bloom-config | 2 +-
scripts/git-bloom-generate | 2 +-
scripts/git-bloom-import-upstream | 2 +-
scripts/git-bloom-patch | 2 +-
scripts/git-bloom-release | 2 +-
10 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/scripts/bloom-export-upstream b/scripts/bloom-export-upstream
index 0a7faef..5ecd25c 100755
--- a/scripts/bloom-export-upstream
+++ b/scripts/bloom-export-upstream
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/bloom-generate b/scripts/bloom-generate
index adc2bf7..7aaee7f 100755
--- a/scripts/bloom-generate
+++ b/scripts/bloom-generate
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/bloom-release b/scripts/bloom-release
index e35e5d8..39cd2b3 100755
--- a/scripts/bloom-release
+++ b/scripts/bloom-release
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/bloom-update b/scripts/bloom-update
index 6ecd6f5..2dcdb58 100755
--- a/scripts/bloom-update
+++ b/scripts/bloom-update
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-branch b/scripts/git-bloom-branch
index 327f14f..d5bfa6b 100755
--- a/scripts/git-bloom-branch
+++ b/scripts/git-bloom-branch
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-config b/scripts/git-bloom-config
index d40b8b0..cbf7bd3 100755
--- a/scripts/git-bloom-config
+++ b/scripts/git-bloom-config
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-generate b/scripts/git-bloom-generate
index 9ca0aa9..8aaa9d0 100755
--- a/scripts/git-bloom-generate
+++ b/scripts/git-bloom-generate
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-import-upstream b/scripts/git-bloom-import-upstream
index 935f55f..e8ef0af 100755
--- a/scripts/git-bloom-import-upstream
+++ b/scripts/git-bloom-import-upstream
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-patch b/scripts/git-bloom-patch
index 894e1af..1e0f6bf 100755
--- a/scripts/git-bloom-patch
+++ b/scripts/git-bloom-patch
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
diff --git a/scripts/git-bloom-release b/scripts/git-bloom-release
index 5591d6a..fc05e4d 100755
--- a/scripts/git-bloom-release
+++ b/scripts/git-bloom-release
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
This is a place holder script for use in testing.
|