Skip to content

Commit

Permalink
fix: do not unpack downloaded tailwindcss extra on macos or windows
Browse files Browse the repository at this point in the history
  • Loading branch information
chriamue authored and ctron committed Mar 4, 2025
1 parent e221ba3 commit c50020e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,10 @@ async fn install(app: Application, archive_file: File, target_directory: PathBuf
Archive::new_zip(archive_file)?
} else if app == Application::TailwindCss {
Archive::new_none(archive_file)
} else if app == Application::TailwindCssExtra
&& (cfg!(target_os = "macos") || cfg!(target_os = "windows"))
{
Archive::new_none(archive_file)
} else {
Archive::new_tar_gz(archive_file)
};
Expand Down

0 comments on commit c50020e

Please sign in to comment.