From 240a1465eba9041068d2c130d45138189431253d Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Fri, 27 Dec 2019 18:23:37 +0400 Subject: [PATCH] Added .sh script and renamed them into bi.cmd and bi.sh --- build_and_install.cmd => bi.cmd | 2 +- bi.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) rename build_and_install.cmd => bi.cmd (95%) create mode 100644 bi.sh diff --git a/build_and_install.cmd b/bi.cmd similarity index 95% rename from build_and_install.cmd rename to bi.cmd index 7d60ba1..fa1d801 100644 --- a/build_and_install.cmd +++ b/bi.cmd @@ -1,4 +1,4 @@ @echo off python setup.py sdist bdist_wheel python -m pip install --user --upgrade dist/piggybank-1.0.0-py3-none-any.whl -pause \ No newline at end of file +pause diff --git a/bi.sh b/bi.sh new file mode 100644 index 0000000..68d6a0a --- /dev/null +++ b/bi.sh @@ -0,0 +1,3 @@ +#!/usr/bin/sh +python setup.py sdist bdist_wheel +python -m pip install --user --upgrade dist/piggybank-1.0.0-py3-none-any.whl