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
let script = PathBuf::from(script_and_args.next().context("I need at least a script name to run, but didn't get one. This represents an internal error, and you should open a bug!")?);
115
+
let script = PathBuf::from(
116
+
self.script_and_arguments
117
+
.first()
118
+
.context("no script to run; this is a bug; please report")?,
0 commit comments