We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7024108 commit f230078Copy full SHA for f230078
packages/nx/src/native/watch/utils.rs
@@ -53,7 +53,7 @@ pub(super) fn get_ignore_files<T: AsRef<str>>(root: T) -> Vec<IgnoreFile> {
53
static OS_PLATFORM: Lazy<OSInformation> = Lazy::new(os_type::current_platform);
54
55
pub(super) fn transform_event(watch_event: &Event) -> Option<Event> {
56
- if OS_PLATFORM.os_type == OSType::Debian {
+ if OS_PLATFORM.os_type == OSType::Debian || OS_PLATFORM.os_type == OSType::Arch {
57
let tags = watch_event
58
.tags
59
.clone()
0 commit comments