Skip to content

Commit

Permalink
Add a script to upgrade lockfiles for all images
Browse files Browse the repository at this point in the history
  • Loading branch information
samruddhikhandale committed Dec 1, 2023
1 parent f3a70be commit 907d372
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build/upgrade.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

for dir in ./src/*/ ; do
if [ -d "$dir" ]; then
echo "Upgrading devcontainer lockfiles for '$dir'"
devcontainer upgrade --workspace-folder "$dir"
fi
done

0 comments on commit 907d372

Please sign in to comment.