diff options
-rw-r--r-- | cli/tests/testdata/task/task_exit_code_5.out | 1 | ||||
-rw-r--r-- | cli/tests/testdata/task/task_non_existent.out | 1 | ||||
-rw-r--r-- | cli/tools/task.rs | 4 |
3 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/testdata/task/task_exit_code_5.out b/cli/tests/testdata/task/task_exit_code_5.out index 6b53b1d38..12d171939 100644 --- a/cli/tests/testdata/task/task_exit_code_5.out +++ b/cli/tests/testdata/task/task_exit_code_5.out @@ -1,3 +1,2 @@ -Warning deno task is unstable and may drastically change in the future Task exit_code_5 echo $(echo 10 ; exit 2) && exit 5 10 diff --git a/cli/tests/testdata/task/task_non_existent.out b/cli/tests/testdata/task/task_non_existent.out index 645e96f2b..035a43fd8 100644 --- a/cli/tests/testdata/task/task_non_existent.out +++ b/cli/tests/testdata/task/task_non_existent.out @@ -1,4 +1,3 @@ -Warning deno task is unstable and may drastically change in the future Task not found: non_existent Available tasks: - boolean_logic diff --git a/cli/tools/task.rs b/cli/tools/task.rs index 4b05a37e5..4cbba8661 100644 --- a/cli/tools/task.rs +++ b/cli/tools/task.rs @@ -25,10 +25,6 @@ pub async fn execute_script( flags: Flags, task_flags: TaskFlags, ) -> Result<i32, AnyError> { - log::warn!( - "{} deno task is unstable and may drastically change in the future", - crate::colors::yellow("Warning"), - ); let ps = ProcState::build(flags).await?; let tasks_config = ps.options.resolve_tasks_config()?; let config_file_url = ps.options.maybe_config_file_specifier().unwrap(); |