Skip to content

Commit 0be0047

Browse files
committed
Less compilation on non-win32 systems
1 parent b0c6d4a commit 0be0047

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

create-project.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ echo -e "\x1B[32mCopiling with ${cpus} compute jobs!\033[0m"
117117
find_visual_studio_directory
118118
create_folders "${prjname}"
119119
generate_files "${prjname}"
120-
if [ "$3" == "" ]; then
121-
compile "${prjname}" "$2"
120+
if [ "$2" != "--skip-compilation" ]; then
121+
compile "${prjname}" "$3"
122122
fi
123123

124124
echo -e "\x1B[32mFramework and project successfully installed! \033[0m"

0 commit comments

Comments
 (0)