diff options
author | mistachkin <mistachkin@noemail.net> | 2016-02-25 02:56:53 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2016-02-25 02:56:53 +0000 |
commit | 6ae4d84fdfbe4168ec6e15e4995d78dc31d2f90a (patch) | |
tree | cff7ad29206fc019a6fa776147ae8244def19281 /vsixtest/vsixtest.tcl | |
parent | c32db469f4fc67e2decbc200af3598093093c9ec (diff) | |
download | sqlite-6ae4d84fdfbe4168ec6e15e4995d78dc31d2f90a.tar.gz sqlite-6ae4d84fdfbe4168ec6e15e4995d78dc31d2f90a.zip |
Enable all steps and add/update comments.
FossilOrigin-Name: 788f99f47f40be42f30d3f324983f39e84d8cfbb
Diffstat (limited to 'vsixtest/vsixtest.tcl')
-rw-r--r-- | vsixtest/vsixtest.tcl | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/vsixtest/vsixtest.tcl b/vsixtest/vsixtest.tcl index d25c51d9b..7c30e579c 100644 --- a/vsixtest/vsixtest.tcl +++ b/vsixtest/vsixtest.tcl @@ -5,22 +5,24 @@ # # PREREQUISITES # -# 1. Tcl 8.4 and later are supported, earlier versions have not been tested. +# 1. This tool must be executed with "elevated administrator" privileges. # -# 2. The "sqlite-UWP-output.vsix" file is assumed to exist in the parent +# 2. Tcl 8.4 and later are supported, earlier versions have not been tested. +# +# 3. The "sqlite-UWP-output.vsix" file is assumed to exist in the parent # directory of the directory containing this script. The [optional] first # command line argument to this script may be used to specify an alternate # file. However, currently, the file must be compatible with both Visual # Studio 2015 and the Universal Windows Platform. # -# 3. The "VERSION" file is assumed to exist in the parent directory of the +# 4. The "VERSION" file is assumed to exist in the parent directory of the # directory containing this script. It must contain a version number that # matches the VSIX file being tested. # -# 4. The temporary directory specified in the TEMP or TMP environment variables +# 5. The temporary directory specified in the TEMP or TMP environment variables # must refer to an existing directory writable by the current user. # -# 5. The VS140COMNTOOLS environment variable must refer to the Visual Studio +# 6. The VS140COMNTOOLS environment variable must refer to the Visual Studio # 2015 common tools directory. # # USAGE @@ -259,7 +261,7 @@ if {1} then { ############################################################################### if {1} then { - # putsAndEval $commands(1) + putsAndEval $commands(1) set versionNumber [string trim [readFile $versionFileName]] set data [readFile $projectTemplateFileName] @@ -277,5 +279,5 @@ if {1} then { } } - # putsAndEval $commands(3) + putsAndEval $commands(3) } |