Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
reyery committed Feb 20, 2024
1 parent 87edcc4 commit d694d3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup/cityenergyanalyst.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Section "Base Installation" Base_Installation_Section
File "cea-icon.ico"

# create a shortcut in the $INSTDIR for launching the CEA console
CreateShortcut "$INSTDIR\CEA Console.lnk" "$WINDIR\System32\cmd.exe" "/K '$INSTDIR\dependencies\cea-env.bat'" \
CreateShortcut "$INSTDIR\CEA Console.lnk" "$WINDIR\System32\cmd.exe" '/K "$INSTDIR\dependencies\cea-env.bat"' \
"$INSTDIR\cea-icon.ico" 0 SW_SHOWNORMAL "" "Launch the CEA Console"

# create a shortcut in the $INSTDIR for launching the CEA dashboard
Expand All @@ -137,7 +137,7 @@ Section "Create Start menu shortcuts" Create_Start_Menu_Shortcuts_Section

# create shortcuts in the start menu for launching the CEA console
CreateDirectory '$SMPROGRAMS\${CEA_TITLE}'
CreateShortCut '$SMPROGRAMS\${CEA_TITLE}\CEA Console.lnk' "$WINDIR\System32\cmd.exe" "/K '$INSTDIR\dependencies\cea-env.bat'" \
CreateShortCut '$SMPROGRAMS\${CEA_TITLE}\CEA Console.lnk' "$WINDIR\System32\cmd.exe" '/K "$INSTDIR\dependencies\cea-env.bat"' \
"$INSTDIR\cea-icon.ico" 0 SW_SHOWNORMAL "" "Launch the CEA Console"

CreateShortcut "$SMPROGRAMS\${CEA_TITLE}\CEA Dashboard.lnk" "$INSTDIR\dashboard\CityEnergyAnalyst-GUI.exe" "" \
Expand All @@ -164,7 +164,7 @@ SectionEnd
Section /o "Create Desktop shortcuts" Create_Desktop_Shortcuts_Section

# create shortcuts on the Desktop for launching the CEA console
CreateShortCut '$DESKTOP\CEA Console.lnk' "$WINDIR\System32\cmd.exe" "/K '$INSTDIR\dependencies\cea-env.bat'" \
CreateShortCut '$DESKTOP\CEA Console.lnk' "$WINDIR\System32\cmd.exe" '/K "$INSTDIR\dependencies\cea-env.bat"' \
"$INSTDIR\cea-icon.ico" 0 SW_SHOWNORMAL "" "Launch the CEA Console"

CreateShortcut "$DESKTOP\CEA Dashboard.lnk" "$INSTDIR\dashboard\CityEnergyAnalyst-GUI.exe" "" \
Expand Down

0 comments on commit d694d3f

Please sign in to comment.