feroxide-gui 1.0.1

A basic chemistry simulator (GUI)
Documentation
#!/bin/sh

mode="$1"

if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
  if [ "$mode" = "install" ]; then
    # Test if clippy is already installed (cache)
    if cargo clippy -V; then
      echo "Clippy already installed, skipping installation"
      exit 0
    fi

    cargo install clippy
    exit $?
  fi

  if [ "$mode" = "test" ]; then
    cargo clippy --verbose -- -D warnings
    exit $?
  fi
fi

exit 0