Commit 2e9ffd36 by Csók Tamás

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

parent 4c25b17c
...@@ -4,20 +4,20 @@ setLocal EnableDelayedExpansion ...@@ -4,20 +4,20 @@ setLocal EnableDelayedExpansion
rem Get the running directory for later ease of use rem Get the running directory for later ease of use
SET running_directory=%~dp0 SET running_directory=%~dp0
rem Set where this file will install the rest of the files rem Set where this file will install the rest of the files
IF NOT "%1"=="" ( IF NOT [%1]==[] (
SET "location=%1" SET "location=%1"
SET install_location=!location:"=! SET install_location=!location:"=!
) else ( ) else (
SET "install_location=%APPDATA%\CIRCLE" SET "install_location=%APPDATA%\CIRCLE"
) )
rem Set whether we want output info on screen or not rem Set whether we want output info on screen or not
IF NOT "%2"=="" ( IF NOT [%2]==[] (
SET "output_on_screen=%2" SET "output_on_screen=%2"
) else ( ) else (
SET "output_on_screen=True" SET "output_on_screen=True"
) )
rem Set whether we want to install NX Client or not rem Set whether we want to install NX Client or not
IF NOT "%3"=="" ( IF NOT [%3]==[] (
SET "install_nx=%3" SET "install_nx=%3"
) else ( ) else (
SET "install_nx=False" SET "install_nx=False"
...@@ -28,28 +28,28 @@ if NOT "!install_nx!"=="False" ( ...@@ -28,28 +28,28 @@ if NOT "!install_nx!"=="False" (
rem Set which website should the icon point to rem Set which website should the icon point to
SET "site=^"http://cloud.bme.hu/^"" SET "site=^"http://cloud.bme.hu/^""
IF NOT "%4"=="" ( IF NOT [%4]==[] (
SET site=%4 SET site=%4
) )
SET my_site=!site:"=! SET my_site=!site:"=!
SET "website= -t ^"!my_site!^"" SET "website= -t ^"!my_site!^""
rem Set Python bit count (32 or 64) if we know it rem Set Python bit count (32 or 64) if we know it
IF NOT "%5"=="" ( IF NOT [%5]==[] (
SET "architecture=%5" SET "architecture=%5"
) else ( ) else (
SET "architecture=" SET "architecture="
) )
rem Set Python version if we know it rem Set Python version if we know it
IF NOT "%6"=="" ( IF NOT [%6]==[] (
SET "version=%6" SET "version=%6"
) else ( ) else (
SET "version=" SET "version="
) )
rem Set Python location if we know it rem Set Python location if we know it
IF NOT "%7"=="" ( IF NOT [%7]==[] (
SET "python_location=%7" SET "python_location=%7"
SET install_path=!python_location:"=! SET install_path=!python_location:"=!
) else ( ) 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