Skip to content

Commit

Permalink
Setup: fix all case in config.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Dec 20, 2024
1 parent 4532c29 commit 24029d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/common/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fi

mkdir -p "$HOME/.config"

if [ "$1" = 'all' ] || [ "$1" = '.config/Code' ]; then
if [ "$#" -eq 0 ] || [ "$1" = '.config/Code' ]; then
OS_NAME="$(uname -s)"
if [ "$OS_NAME" = Darwin ]; then
# TARGET=$HOME/Library/Application Support/Code
Expand Down

0 comments on commit 24029d6

Please sign in to comment.