Skip to content

Commit 5564ad9

Browse files
committed
create_package: quick fix for projectGenerator vs
1 parent 472b684 commit 5564ad9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

scripts/dev/create_package.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
platform=$1
66
version=$2
77

8-
REPO=https://github.com/openframeworks/openFrameworks
9-
REPO_ALIAS=upstreamhttps
10-
BRANCH=develop
8+
REPO=https://github.com/arturoc/openFrameworks
9+
REPO_ALIAS=arturohttps
10+
BRANCH=feature-elinuxProgrammableGL
1111

1212
PG_REPO=https://github.com/ofZach/projectGeneratorSimple.git
1313
PG_REPO_ALIAS=originhttps
@@ -113,7 +113,11 @@ function deleteEclipse {
113113

114114

115115
function createProjectFiles {
116-
projectGenerator --allexamples --${pkg_platform}
116+
if [ "${pkg_platform}"=="vs" ]; then
117+
projectGenerator --allexamples --vs2010
118+
else
119+
projectGenerator --allexamples --${pkg_platform}
120+
fi
117121
}
118122

119123
function createPackage {

0 commit comments

Comments
 (0)