Browse Source

fixed execve command, now supporting pyenv

digital 8 năm trước cách đây
mục cha
commit
90b5011e95
6 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 1 1
      __int__.py
  2. 1 1
      gui/__init__.py
  3. 1 1
      misc/__init__.py
  4. 1 1
      network/__init__.py
  5. 1 1
      network/client.py
  6. 1 1
      network/server.py

+ 1 - 1
__int__.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.

+ 1 - 1
gui/__init__.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.

+ 1 - 1
misc/__init__.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.

+ 1 - 1
network/__init__.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.

+ 1 - 1
network/client.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.

+ 1 - 1
network/server.py

@@ -1,4 +1,4 @@
-#!/usr/bin/python3.5
+#!/usr/bin/env python3.5
 # Copyright 2017 Digital
 #
 # This file is part of DigiLib.