summaryrefslogtreecommitdiff
path: root/cli/tsc.rs
diff options
context:
space:
mode:
authorAapo Alasuutari <aapo.alasuutari@gmail.com>2022-07-26 20:34:08 +0300
committerGitHub <noreply@github.com>2022-07-26 19:34:08 +0200
commitb4b4e5980be5e49211673b4d01c9f7d04f8572d4 (patch)
tree5814e1ff333135b39a54521d89ef7df1a6db7506 /cli/tsc.rs
parent2e1d6d35081f17cec220a11b3578b135fb42df91 (diff)
chore(ops): Remove unused arguments from ops (#15315)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r--cli/tsc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs
index 633b4cd30..0b9f02583 100644
--- a/cli/tsc.rs
+++ b/cli/tsc.rs
@@ -315,7 +315,7 @@ fn op_create_hash(s: &mut OpState, args: Value) -> Result<Value, AnyError> {
}
#[op]
-fn op_cwd(s: &mut OpState, _args: Value) -> Result<String, AnyError> {
+fn op_cwd(s: &mut OpState) -> Result<String, AnyError> {
let state = s.borrow_mut::<State>();
if let Some(config_specifier) = &state.maybe_config_specifier {
let cwd = config_specifier.join("./")?;