diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-20 23:59:13 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-20 23:59:13 +0200 |
| commit | 1c3bd82fb9c272732b4ca2efafae636c1fddae90 (patch) | |
| tree | 8caf0521880550b60198fea3fac45e68f723f3bf | |
| parent | fb2964b28f417b3b208c9dd932a7bc60e864d286 (diff) | |
fix
| -rw-r--r-- | dotfiles/Rexfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/Rexfile b/dotfiles/Rexfile index 41df473..d9d1756 100644 --- a/dotfiles/Rexfile +++ b/dotfiles/Rexfile @@ -224,7 +224,7 @@ task 'home_pipewire', sub { desc 'Manage ~/QuickEdit directory and symlinks'; task 'home_quickedit', sub { - if ( is_os('linux') || is_os('freebsd') ) { + if ( $^O eq 'linux' || $^O eq 'freebsd' ) { Rex::Logger::info('Setting up ~/QuickEdit'); file "$HOME/QuickEdit", @@ -261,7 +261,7 @@ task 'home_quickedit', sub { } } } - elsif ( is_os('darwin') ) { + elsif ( $^O eq 'darwin' ) { Rex::Logger::info('QuickEdit placeholder for macOS (not yet implemented)'); # TODO: Implement QuickEdit management for macOS } |
