浏览代码

fixed execve command, now supporting pyenv

digital 8 年之前
父节点
当前提交
90b5011e95
共有 6 个文件被更改,包括 6 次插入6 次删除
  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.