From 71371e95c99ce159f5c174613bf0837bfb7e70ba Mon Sep 17 00:00:00 2001 From: Ryu Yu Date: Fri, 5 Feb 2016 17:03:05 -0800 Subject: [PATCH] update makevsix.sh to override manifest values for test --- makevsix.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makevsix.sh b/makevsix.sh index 939bf4a..13dfab2 100755 --- a/makevsix.sh +++ b/makevsix.sh @@ -23,9 +23,9 @@ if [ $1 == "create" ] ; then tfx extension create --manifest-globs mobiledevopscordovaextension.json fi -if [ $1 == "publish" ] ; then - echo "Creating and publishing VSIX..." - tfx extension publish --manifest-globs mobiledevopscordovaextension.json --share-with mobiledevops x04ty29er --token $PUBLISH_ACCESSTOKEN +if [ $1 == "publishtest" ] ; then + echo "Creating and publishing test VSIX..." + tfx extension publish --manifest-globs mobiledevopscordovaextension.json --override '{ "public": "false", "name": "Cordova Build-Dev", "id": "cordova-extension-dev", "publisher": "ms-mobiledevops-test"}' --share-with mobiledevops x04ty29er --token $PUBLISH_ACCESSTOKEN fi