mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Update test_example.sh
- Remove BOM - Fix shebang - Do not run `cargo check` in parallel - `rustc` is good at utilizating cores by default - running `cargo check` in parallel messes up the output
This commit is contained in:
parent
d5392fddab
commit
98855ecebe
1 changed files with 2 additions and 2 deletions
4
examples/test_examples.sh
Normal file → Executable file
4
examples/test_examples.sh
Normal file → Executable file
|
@ -1,9 +1,9 @@
|
|||
##!/bin/sh
|
||||
#!/bin/sh
|
||||
|
||||
for example in */; do
|
||||
echo Testing $example...
|
||||
cd $example
|
||||
cargo check &
|
||||
cargo check
|
||||
cd ..
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue