Skip to content

Commit

Permalink
fix: fight line endings on Windows (I won)
Browse files Browse the repository at this point in the history
  • Loading branch information
woll0r committed Feb 20, 2024
1 parent cc0c49f commit e84ba80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .devcontainer/postCreateCommand.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
set -e
set -o noglob

echo "Startup" > .vscode/postCreateCommand.log
# Setup fisher plugin manager for fish and install plugins
/usr/bin/fish -c "
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
Expand All @@ -15,10 +14,8 @@ fisher install PatrickF1/fzf.fish
echo "Fisher done" >> .vscode/postCreateCommand.log

# Create/update virtual environment
if ! grep -q "venv /workspaces/" .venv/pyvenv.cfg; then
if ! (grep -q "venv /workspaces/" .venv/pyvenv.cfg || true); then
rm -rf .venv
echo "Venv cleanup done" >> .vscode/postCreateCommand.log
fi

task deps
echo "Task done" >> .vscode/postCreateCommand.log
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.sops.yaml diff=sopsdiffer
* text=auto

0 comments on commit e84ba80

Please sign in to comment.