6 lines
103 B
Bash
6 lines
103 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ ! -e "pyinstaller" ]; then
|
||
|
|
git clone https://github.com/pyinstaller/pyinstaller
|
||
|
|
fi
|