mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-05-08 00:55:01 -04:00
don't try to execute nomadnet pages when running on windows
This commit is contained in:
parent
d8cfc69ac6
commit
7d18a103cf
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
import RNS
|
||||
import time
|
||||
import threading
|
||||
|
@ -159,7 +161,8 @@ class Node:
|
|||
try:
|
||||
if request_allowed:
|
||||
RNS.log("Serving page: "+file_path, RNS.LOG_VERBOSE)
|
||||
if os.access(file_path, os.X_OK):
|
||||
is_windows = sys.platform == "win32"
|
||||
if is_windows is False and os.access(file_path, os.X_OK):
|
||||
env_map = {}
|
||||
if "PATH" in os.environ:
|
||||
env_map["PATH"] = os.environ["PATH"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue