[go: up one dir, main page]

autocfg 1.5.0

Automatic cfg for Rust compiler features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

for arg in "$@"; do
  case "$arg" in
    # Add our own version so we can check that the wrapper is used for that.
    "--version") echo "release: 12345.6789.0" ;;
    # Read all input so the writer doesn't get EPIPE when we exit.
    "-") read -d "" PROBE ;;
  esac
done

exit 0