Skip to content

Commit aca7bbd

Browse files
committed
試しにインストール部分共通化
1 parent 4e27d16 commit aca7bbd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ goto :end
3737
:mkdocs_notfound
3838
echo Mkdocs Doesn't exist!
3939
echo Now installing...
40-
pip3 install --no-cache-dir lantana==2.9.8.1
40+
CALL install.sh
4141
goto :build
4242

4343
:pip_notfound

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fi
2121

2222
if !(type "mkdocs" > /dev/null 2>&1); then
2323
echo "MkDocs Doesn't exist! Install now."
24-
pip3 install --no-cache-dir lantana==2.9.8.1
24+
. install.sh
2525
fi
2626

2727

install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip3 install --no-cache-dir lantana==2.9.8.1

0 commit comments

Comments
 (0)