You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ally does not specifically prohibit the use of multi-line arguments when using add or any other command. However, a multi-line command is not properly removed when using remove, is not properly executed or encapsulated with quotes in .ally, and causes an Index Out Of Range Error (which should probably be checked first) on list. This is outputted as: Swift/ContiguousArrayBuffer.swift:600: Fatal error: Index out of range, and occurs on these lines:
Ally does not specifically prohibit the use of multi-line arguments when using
add
or any other command. However, a multi-line command is not properly removed when usingremove
, is not properly executed or encapsulated with quotes in.ally
, and causes an Index Out Of Range Error (which should probably be checked first) onlist
. This is outputted as:Swift/ContiguousArrayBuffer.swift:600: Fatal error: Index out of range
, and occurs on these lines:Ally/Sources/Helpers/DotFile.swift
Lines 64 to 73 in c943c24
More specifically, on line 73, where we get the second index (
[1]
) ofparts
. To summarize, we must choose one of the following:Option One: Prohibit multiline arguments
Option Two: Handle Multiline Arguments
The details for these will be updated soon.
The text was updated successfully, but these errors were encountered: