Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
FREEWING-JP committed Mar 7, 2021
1 parent 0785a43 commit 281fb5a
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
10 changes: 9 additions & 1 deletion Python/build_Python_3710.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/sh

cd `dirname $0`
pwd
SCRIPT_DIR=$(pwd)
echo $SCRIPT_DIR


PYTHON_VERSION=v3.7.10

build_Python_sub.sh $PYTHON_VERSION
chmod +x ./build_Python_sub.sh
./build_Python_sub.sh $PYTHON_VERSION

10 changes: 9 additions & 1 deletion Python/build_Python_388.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/sh

cd `dirname $0`
pwd
SCRIPT_DIR=$(pwd)
echo $SCRIPT_DIR


PYTHON_VERSION=v3.8.8

build_Python_sub.sh $PYTHON_VERSION
chmod +x ./build_Python_sub.sh
./build_Python_sub.sh $PYTHON_VERSION

10 changes: 9 additions & 1 deletion Python/build_Python_392.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/sh

cd `dirname $0`
pwd
SCRIPT_DIR=$(pwd)
echo $SCRIPT_DIR


PYTHON_VERSION=v3.9.2

build_Python_sub.sh $PYTHON_VERSION
chmod +x ./build_Python_sub.sh
./build_Python_sub.sh $PYTHON_VERSION

7 changes: 7 additions & 0 deletions Python/build_Python_sub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ echo $SCRIPT_DIR

# ===
# ===
if [ -d ~/cpython ]; then
echo "Already Exists Directory"
exit 0
fi


# ===
# ===
PYTHON_VERSION=$1
echo $PYTHON_VERSION

Expand Down

0 comments on commit 281fb5a

Please sign in to comment.