Skip to content

Commit

Permalink
script for running update tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ifd3f committed Nov 15, 2024
1 parent c66e17f commit ce6936d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scripts/update-deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash

branchname="update/$(date --rfc-3339=date)"
echo "branch name: $branchname"

set -euxo pipefail

git checkout -b "$branchname"
nix flake update
git commit -a -m "nix flake update"

nix develop --command cargo update
git commit -a -m "cargo update"

0 comments on commit ce6936d

Please sign in to comment.