From 04ea96bebf596e25592233161cfd6c565a2d7852 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Thu, 29 Dec 2022 11:59:04 +0900 Subject: [PATCH] Create cargo_publish.bat --- cargo_publish.bat | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cargo_publish.bat 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 +)