dirkk0 commented on issue #1017:
URL: https://github.com/apache/cordova-ios/issues/1017#issuecomment-727176426
My Mac is on Catalina now, and this specific error is gone.
A minimal-ish script to automate the compilation process would look like
this:
TEMPFOLDER=/tmp/cordova-test/
BASEDIR=$PWD
APPNAME=hello
mkdir -p $TEMPFOLDER
open $TEMPFOLDER
cd $TEMPFOLDER
npm install cordova
ALIAS_CORDOVA=$TEMPFOLDER/node_modules/.bin/cordova
$ALIAS_CORDOVA create hello com.example.hello HelloWorld
# copy build.json with provisioning profile information
cp $BASEDIR/_common/build.json $TEMPFOLDER/$APPNAME/
cd $APPNAME
$ALIAS_CORDOVA platform add ios
$ALIAS_CORDOVA build ios
$ALIAS_CORDOVA run ios
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]