mirror of
https://github.com/boostorg/histogram.git
synced 2026-02-02 08:52:11 +00:00
fix
This commit is contained in:
@@ -14,8 +14,7 @@ if not os.path.isabs(args[0]):
|
||||
args[0] = os.path.abspath(args[0])
|
||||
|
||||
# add missing extension on windows
|
||||
t = os.path.join(os.getcwd(), "Debug", args[0] + ".exe")
|
||||
sys.stdout.write("\n".join(os.listdir(os.getcwd()))+"\n")
|
||||
t = os.getcwd() + "/Debug/" + args[0] + ".exe"
|
||||
sys.stdout.write("input file: " + t + "\n")
|
||||
if os.path.exists(t):
|
||||
args[0] = t
|
||||
|
||||
Reference in New Issue
Block a user