mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-06-09 20:11:03 +00:00
Transition into monorepo (#180)
* evm template integrated * workflows modified per template * workflow fixes
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
# From the workspace directory, run :
|
||||
# ./scripts/toml-sort.sh
|
||||
# to format all Cargo.toml files, and
|
||||
# ./scripts/toml-sort.sh --check
|
||||
# to only check the formatting.
|
||||
|
||||
if ! type "toml-sort" > /dev/null; then
|
||||
echo "Run 'cargo install --git https://github.com/4meta5/toml_sort'"
|
||||
else
|
||||
find . -name "Cargo.toml" -not -path "*/target/*" -exec toml-sort {} $@ \;
|
||||
fi
|
||||
Reference in New Issue
Block a user