Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
JOON authored and JOON committed Feb 16, 2024
1 parent 1a14244 commit 6bf3e26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion copy_vscode_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ destination=$1
# Check if destination is remote
if [[ $destination == *":"* ]]; then
echo "Copying to remote destination: $destination"
scp -r ./.vscode $destination
scp -r ./vscode $destination/.vscode
scp ./ruff/ruff.toml $destination/ruff.toml
else
echo "Copying to local destination: $destination"
cp -r ./.vscode $destination
cp ./ruff/ruff.toml $destination/ruff.toml
fi

0 comments on commit 6bf3e26

Please sign in to comment.