tangled
alpha
login
or
join now
keii.dev
/
wisp
3
fork
atom
🧚 A practical web framework for Gleam
3
fork
atom
overview
issues
pulls
pipelines
Update packages script
Louis Pilfold
2 years ago
4c0423f6
5940bf3b
+15
1 changed file
expand all
collapse all
unified
split
bin
examples-update-packages.sh
+15
bin/examples-update-packages.sh
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
#!/bin/sh
2
+
3
+
set -eu
4
+
5
+
for project in examples/*; do
6
+
if [ ! -f "$project/gleam.toml" ]; then
7
+
continue
8
+
fi
9
+
10
+
echo "Updating dependencies for $project"
11
+
cd "$project"
12
+
gleam update
13
+
gleam test || true
14
+
cd ../..
15
+
done