Ver código fonte

scripts: use python3 in shebang

As most of oe-test cases work for devtool and recipetool
it makes sense to switch both tools to python 3 by
explicitly referring to python3 in their shebangs.

(From OE-Core rev: dad9617809c60ec5f11d4780b0afa1cffa1efed5)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ed Bartosh 9 anos atrás
pai
commit
52c4b7f247
4 arquivos alterados com 4 adições e 4 exclusões
  1. 1 1
      scripts/buildhistory-diff
  2. 1 1
      scripts/devtool
  3. 1 1
      scripts/oe-pkgdata-util
  4. 1 1
      scripts/recipetool

+ 1 - 1
scripts/buildhistory-diff

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Report significant differences in the buildhistory repository since a specific revision
 #

+ 1 - 1
scripts/devtool

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # OpenEmbedded Development tool
 #

+ 1 - 1
scripts/oe-pkgdata-util

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # OpenEmbedded pkgdata utility
 #

+ 1 - 1
scripts/recipetool

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Recipe creation tool
 #