Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/dependabot.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
fetch-depth: 0

- name: Release
uses: cycjimmy/semantic-release-action@16ca923e6ccbb50770c415a0ccd43709a8c5f7a4 #v4.2.2
uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 #v5.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion common/update_brew.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

brew update
brew upgrade
Expand Down
2 changes: 1 addition & 1 deletion node/assert_tools.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

echo "Node: $(which node)"
echo "NPM: $(which npm)"
Expand Down
2 changes: 1 addition & 1 deletion node/load_nvm.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
Expand Down
2 changes: 1 addition & 1 deletion node/setup_dev.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

chmod +x "$(dirname "$0")/setup_zshrc_nvm.sh"
"$(dirname "$0")/setup_zshrc_nvm.sh"
Expand Down
2 changes: 1 addition & 1 deletion node/setup_zshrc_nvm.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

if ! grep -q "# >>> nvm initialize >>>" ~/.zshrc; then
if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion node/update_node.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

chmod +x "$(dirname "$0")/load_nvm.sh"
source "$(dirname "$0")/load_nvm.sh"
Expand Down
2 changes: 1 addition & 1 deletion python/clean.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

rm -rf .mypy_cache/
rm -rf .ruff_cache/
Expand Down
2 changes: 1 addition & 1 deletion python/clean_all.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

chmod +x "$(dirname "$0")/clean.sh"
"$(dirname "$0")/clean.sh"
Expand Down
2 changes: 1 addition & 1 deletion python/clean_venv.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

set -ex
set -e

rm -rf .venv/
2 changes: 1 addition & 1 deletion python/poetry/assert_python_poetry.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

echo "Python: $(which python)"
echo "Pip: $(which pip)"
Expand Down
2 changes: 1 addition & 1 deletion python/poetry/assert_setup_dev.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

echo "Asserting setup_dev..."

Expand Down
2 changes: 1 addition & 1 deletion python/poetry/setup_dev.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

while [[ $# -gt 0 ]]; do
case $1 in
Expand Down
2 changes: 1 addition & 1 deletion python/poetry/setup_poetry.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

pipx install poetry
pipx ensurepath
Expand Down
2 changes: 1 addition & 1 deletion python/setup_pipx.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

brew install pipx
pipx upgrade-all
Expand Down
2 changes: 1 addition & 1 deletion python/setup_pyenv.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

brew install pyenv --quiet
if [ ! -d "$(pyenv root)/plugins/pyenv-update" ]; then
Expand Down
2 changes: 1 addition & 1 deletion python/setup_pyenv_zshrc.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

if ! grep -q "# >>> pyenv initialize >>>" ~/.zshrc; then
if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion python/setup_venv_zshrc.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

if ! grep -q "# >>> .venv initialize >>>" ~/.zshrc; then
if [ -s ~/.zshrc ] && [ "$(tail -c 1 ~/.zshrc | wc -l)" -eq 0 ]; then
Expand Down
2 changes: 1 addition & 1 deletion rust/assert_setup_dev.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

echo "Rust: $(which rustc)"
echo "Cargo: $(which cargo)"
Expand Down
2 changes: 1 addition & 1 deletion rust/setup_dev.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

brew install rustup
rustup-init -y
Expand Down
2 changes: 1 addition & 1 deletion shell/install_shell_deps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -ex
set -e

if [[ "$OSTYPE" == "darwin"* ]]; then
brew install shfmt shellcheck prettier
Expand Down