Switched to powershell
This commit is contained in:
parent
6c4c48a195
commit
567e4047c5
|
@ -1,5 +1,4 @@
|
||||||
@echo off & python --version 2> NUL & IF ERRORLEVEL 1 ( ECHO To use this script you need to have Python installed & goto :eof ) ELSE ( python -x "%~f0" %* & goto :eof )
|
$InstallScript = @"
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
|
@ -13,7 +12,7 @@ import ctypes
|
||||||
from ctypes.wintypes import HWND, UINT, WPARAM, LPARAM, LPVOID
|
from ctypes.wintypes import HWND, UINT, WPARAM, LPARAM, LPVOID
|
||||||
|
|
||||||
|
|
||||||
VENV_URL = "https://pypi.python.org/pypi/virtualenv/json"
|
VENV_URL = 'https://pypi.python.org/pypi/virtualenv/json'
|
||||||
APPDATA = os.environ['LocalAppData']
|
APPDATA = os.environ['LocalAppData']
|
||||||
APP = 'lektor-cli'
|
APP = 'lektor-cli'
|
||||||
LIB = 'lib'
|
LIB = 'lib'
|
||||||
|
@ -113,3 +112,7 @@ def main():
|
||||||
print 'All done!'
|
print 'All done!'
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
"@
|
||||||
|
|
||||||
|
|
||||||
|
if (Get-Command python) { python -c $InstallScript } else { "To use this script you need to have Python installed"; exit }
|
Loading…
Reference in New Issue