Fixed some stuff for linux tasks
This commit is contained in:
parent
cc69506408
commit
b186aea266
3
.vscode/tasks.json
vendored
3
.vscode/tasks.json
vendored
@ -57,6 +57,9 @@
|
|||||||
"windows": {
|
"windows": {
|
||||||
"command": "./.vscode/tasks/windows/configure_setup.bat"
|
"command": "./.vscode/tasks/windows/configure_setup.bat"
|
||||||
},
|
},
|
||||||
|
"linux": {
|
||||||
|
"command": "echo \"Not implemented\""
|
||||||
|
},
|
||||||
"problemMatcher": []
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
4
.vscode/tasks/linux/cleanup.sh
vendored
4
.vscode/tasks/linux/cleanup.sh
vendored
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
python -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
python3 -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
||||||
python -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
python3 -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
4
.vscode/tasks/linux/cleanup_everything.sh
vendored
4
.vscode/tasks/linux/cleanup_everything.sh
vendored
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
python -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
python3 -Bc "import pathlib; [p.unlink() for p in pathlib.Path('.').rglob('*.py[co]')]"
|
||||||
python -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
python3 -Bc "import pathlib; [p.rmdir() for p in pathlib.Path('.').rglob('__pycache__')]"
|
||||||
|
|
||||||
rm -rf build/linux/*
|
rm -rf build/linux/*
|
||||||
rm -rf build/windows/*
|
rm -rf build/windows/*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
pip install virtualenv
|
pip3 install virtualenv
|
||||||
|
|
||||||
virtualenv buildenv
|
virtualenv buildenv
|
||||||
|
|
||||||
|
2
.vscode/tasks/linux/install_requirements.sh
vendored
2
.vscode/tasks/linux/install_requirements.sh
vendored
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
pip install virtualenv
|
pip3 install virtualenv
|
||||||
|
|
||||||
virtualenv venv
|
virtualenv venv
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user