diff --git a/cargo_publish.bat b/cargo_publish.bat new file mode 100644 index 0000000..574ead6 --- /dev/null +++ b/cargo_publish.bat @@ -0,0 +1,14 @@ +@echo off + +if %~dp0 == C:%homepath%\GitHub\pylyzer\ ( + cd crates/py2erg + echo publish py2erg ... + cargo publish + rem from cargo 1.66 timeout is not needed + rem timeout 12 + cd ../../ + cargo publish + echo completed +) else ( + echo Use this command in the project root +)