Skip to content

Commit

Permalink
Merge pull request #66 from akshayr-mecha/chore-alacritty
Browse files Browse the repository at this point in the history
chore(alacritty build): fix mkdir error
  • Loading branch information
akshayr-mecha authored Jan 3, 2025
2 parents 886e049 + 7dfb29e commit 18527d4
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 @@ -36,7 +36,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 -p $config_dest
mkdir $config_dest
}

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

# Copy theme file
Expand Down

0 comments on commit 18527d4

Please sign in to comment.