1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 01:26:14 +02:00
youki/scripts
utam0k 6a98b59026 Convenient use of rust-analyzer and other tools by placing Cargo.toml in the root.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-04-26 12:03:09 +00:00
..
.gitignore Add scripts to build binaries, run rust integration tests and clean up 2022-02-06 16:01:13 +05:30
README.md Update the docs for the directory structure changes (#813) 2022-04-13 20:59:52 +02:00
build.sh Convenient use of rust-analyzer and other tools by placing Cargo.toml in the root. 2022-04-26 12:03:09 +00:00
clean.sh Convenient use of rust-analyzer and other tools by placing Cargo.toml in the root. 2022-04-26 12:03:09 +00:00
oci_integration_tests.sh Introduce the root Makefile. 2022-03-11 22:14:34 +09:00
rust_integration_tests.sh Convenient use of rust-analyzer and other tools by placing Cargo.toml in the root. 2022-04-26 12:03:09 +00:00

Scripts

This stores various scripts that do various things. These can be intended to be used directly, or can be for using from some other scripts or Makefiles.

Note

Please use set -e at the start of every script. This will ensure that the operation fails if any single command fails in that script. Without it, the script will continue after the failing command and might create a knock-on effect of incorrect results. In case you expect some step to fail, handle the failure directly rather than checking some condition to see if the command is successful in the rest of the script.