Unverified Commit cd09fd27 authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

Allow warnings in examples compilation (#3020)

## Motivation and Context
** needs backport **

Allow warnings in examples compilation

## Description
<!--- Describe your changes in detail -->

## Testing
Verified that `RUSTFLAGS=""` works as expected.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent 2011da48
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ cd aws-sdk/examples
for example in *; do
    echo -e "${C_YELLOW}Checking examples/${example}...${C_RESET}"
    pushd "${example}" &>/dev/null
    cargo check
    RUSTFLAGS="" cargo check
    cargo clean
    popd &>/dev/null
done