Skip to content

Commit b76bfde

Browse files
committedApr 6, 2017
Fix unset var in template install script
Pro Tip: Don't code on the train early in the morning
1 parent 53e3f3b commit b76bfde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎editors/QtCreator/install-win.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ IF NOT EXIST "%WIZARDS%" (
66
mkdir "%WIZARDS%"
77
)
88

9-
IF NOT EXIST "%TEMPLATES%\qgis" (
10-
mklink /J "%TEMPLATES%\qgis" %CD%\templates\wizards\qgis
9+
IF NOT EXIST "%WIZARDS%\qgis" (
10+
mklink /J "%WIZARDS%\qgis" %CD%\templates\wizards\qgis
1111
)
1212

1313
IF NOT EXIST "%CODESTYLES%" (

0 commit comments

Comments
 (0)
Please sign in to comment.