Skip to content

Commit

Permalink
fix: add mkdir -p
Browse files Browse the repository at this point in the history
  • Loading branch information
afeiship committed Mar 8, 2023
1 parent ca2a653 commit 109aa6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/_mkp.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

function mkp() {
mkdir "$1" && cd "$1"
mkdir -p "$1" && cd "$1"
}

0 comments on commit 109aa6b

Please sign in to comment.