File: script.sh

package info (click to toggle)
rust-cty 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 120 kB
  • sloc: sh: 13; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
set -ex

main() {
    for target in $(rustup target list | grep linux-gnu | cut -d' ' -f1); do
        rustup target add $target || continue
        cargo check --target $target
    done
}

main