watchexec-cli 2.5.1

Executes commands in response to file modifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use miette::{bail, Result};

use crate::args::command::EnvVar;

use super::{SocketSpec, Sockets};

#[derive(Debug)]
pub struct SocketSet;

impl SocketSet for SocketSet {
	async fn create(_: &[SocketSpec]) -> Result<Self> {
		bail!("--socket is not supported on your platform")
	}

	fn envs(&self) -> Vec<EnvVar> {
		Vec::new()
	}
}