| OLD | NEW |
| 1 #!/usr/bin/tclsh | 1 #!/usr/bin/tclsh |
| 2 # | 2 # |
| 3 # This script is used to generate a VSIX (Visual Studio Extension) file for | 3 # This script is used to generate a VSIX (Visual Studio Extension) file for |
| 4 # SQLite usable by Visual Studio. | 4 # SQLite usable by Visual Studio. |
| 5 # | 5 # |
| 6 # PREREQUISITES | 6 # PREREQUISITES |
| 7 # | 7 # |
| 8 # 1. Tcl 8.4 and later are supported, earlier versions have not been tested. | 8 # 1. Tcl 8.4 and later are supported, earlier versions have not been tested. |
| 9 # | 9 # |
| 10 # 2. The "sqlite3.h" file is assumed to exist in the parent directory of the | 10 # 2. The "sqlite3.h" file is assumed to exist in the parent directory of the |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 # NOTE: Cleanup the temporary staging directory. | 804 # NOTE: Cleanup the temporary staging directory. |
| 805 # | 805 # |
| 806 file delete -force $stagingDirectory | 806 file delete -force $stagingDirectory |
| 807 | 807 |
| 808 ############################################################################### | 808 ############################################################################### |
| 809 | 809 |
| 810 # | 810 # |
| 811 # NOTE: Success, emit the fully qualified path of the generated VSIX file. | 811 # NOTE: Success, emit the fully qualified path of the generated VSIX file. |
| 812 # | 812 # |
| 813 puts stdout $outputFile | 813 puts stdout $outputFile |
| OLD | NEW |