Skip to content

Commit

Permalink
Merge pull request #72 from mecha-org/revert-66-chore-alacritty
Browse files Browse the repository at this point in the history
Revert "chore(alacritty build): fix mkdir error"
  • Loading branch information
akshayr-mecha authored Jan 4, 2025
2 parents e988edf + 88aaa14 commit 0ca2a07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debian/distro/modules/alacritty-config.nu
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export def configure_alacritty [] {
# Create config directory if it doesn't exist
if not ($config_dest | path exists) {
log_debug $"Creating directory: ($config_dest)"
mkdir $config_dest
mkdir -p $config_dest
}

# Copy configuration file
Expand All @@ -52,7 +52,7 @@ export def configure_alacritty [] {
log_info "Setting up Alacritty theme..."
if not ($theme_dest | path exists) {
log_debug $"Creating directory: ($theme_dest)"
mkdir $theme_dest
mkdir -p $theme_dest
}

# Copy theme file
Expand Down

0 comments on commit 0ca2a07

Please sign in to comment.