Commit 2e9ffd36 by Csók Tamás

client: szóköz javítás

parent 4c25b17c
......@@ -4,20 +4,20 @@ setLocal EnableDelayedExpansion
rem Get the running directory for later ease of use
SET running_directory=%~dp0
rem Set where this file will install the rest of the files
IF NOT "%1"=="" (
IF NOT [%1]==[] (
SET "location=%1"
SET install_location=!location:"=!
) else (
SET "install_location=%APPDATA%\CIRCLE"
)
rem Set whether we want output info on screen or not
IF NOT "%2"=="" (
IF NOT [%2]==[] (
SET "output_on_screen=%2"
) else (
SET "output_on_screen=True"
)
rem Set whether we want to install NX Client or not
IF NOT "%3"=="" (
IF NOT [%3]==[] (
SET "install_nx=%3"
) else (
SET "install_nx=False"
......@@ -28,28 +28,28 @@ if NOT "!install_nx!"=="False" (
rem Set which website should the icon point to
SET "site=^"http://cloud.bme.hu/^""
IF NOT "%4"=="" (
IF NOT [%4]==[] (
SET site=%4
)
SET my_site=!site:"=!
SET "website= -t ^"!my_site!^""
rem Set Python bit count (32 or 64) if we know it
IF NOT "%5"=="" (
IF NOT [%5]==[] (
SET "architecture=%5"
) else (
SET "architecture="
)
rem Set Python version if we know it
IF NOT "%6"=="" (
IF NOT [%6]==[] (
SET "version=%6"
) else (
SET "version="
)
rem Set Python location if we know it
IF NOT "%7"=="" (
IF NOT [%7]==[] (
SET "python_location=%7"
SET install_path=!python_location:"=!
) else (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment