We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26920e8 commit b43c829Copy full SHA for b43c829
jgo/jgo.py
@@ -1,4 +1,5 @@
1
import argparse
2
+echo "TEST"
3
import configparser
4
import glob
5
import logging
@@ -265,7 +266,7 @@ def run_and_combine_outputs(command, *args):
265
266
267
def find_endpoint(argv, shortcuts={}):
268
# endpoint is first positional argument
- pattern = re.compile(".*https?://.*")
269
+ pattern = re.compile("(.*https?://.*|\S:\\.*)")
270
indices = []
271
for index, arg in enumerate(argv):
272
if arg in shortcuts or (Endpoint.is_endpoint(arg) and not pattern.match(arg)):
0 commit comments