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.
2 parents d85cd7a + 5a3901e commit c32b407Copy full SHA for c32b407
Interlace/lib/core/__version__.py
@@ -1 +1 @@
1
-__version__ = '1.5.3'
+__version__ = '1.5.4'
Interlace/lib/core/input.py
@@ -102,10 +102,9 @@ def process_commands(arguments):
102
final_commands = set()
103
output = OutputHelper(arguments)
104
105
- # checking for whether output is writable and whether it exists
106
- if arguments.output:
107
- if not access(arguments.output, W_OK):
108
- raise Exception("Directory provided isn't writable")
+ # removing the trailing slash if any
+ if arguments.output[-1] == "/":
+ arguments.output = arguments.output[:-1]
109
110
if arguments.port:
111
if "," in arguments.port:
0 commit comments