Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / bin / add-nightly-suffix-to-versions.sh
265 B 11 lines
1#!/bin/sh 2 3# 4# Add the `-nightly-YYYYMMDD` suffix the version of all Rust crates in the 5# workspace. Used by the nightly build. 6# 7 8set -e 9 10find . -name Cargo.toml -exec \ 11 sed -i "" -e "s/^version = \"\([^\"]*\)\"$/version = \"\1-nightly-$(date +%Y%m%d)\"/" {} \;