Overview
| Comment: | Made error reporting less verbose |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
51935c7f5c7b87f394a7861906c423ca |
| User & Date: | rkeene on 2016-03-11 21:17:36.085 |
| Other Links: | manifest | tags |
Context
|
2016-03-11
| ||
| 21:41 | Added release engineering scripts check-in: d9d859322c user: rkeene tags: trunk | |
| 21:17 | Made error reporting less verbose check-in: 51935c7f5c user: rkeene tags: trunk | |
| 21:16 | Updated to do additional error checking check-in: c8a8a96d25 user: rkeene tags: trunk | |
Changes
Modified hunter2
from [60941617be]
to [7cb1f824eb].
| ︙ | ︙ | |||
515 516 517 518 519 520 521 |
db eval {
CREATE TABLE IF NOT EXISTS users(name, publicKey BLOB);
CREATE TABLE IF NOT EXISTS passwords(name, encryptedPass BLOB, encryptedKey BLOB, publicKey BLOB);
}
if {$action in $validCommands} {
| > | > > > > > | 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 |
db eval {
CREATE TABLE IF NOT EXISTS users(name, publicKey BLOB);
CREATE TABLE IF NOT EXISTS passwords(name, encryptedPass BLOB, encryptedKey BLOB, publicKey BLOB);
}
if {$action in $validCommands} {
if {[catch {
$action {*}$argv
} error]} {
puts stderr "Error: $error"
exit 1
}
} else {
puts stderr "Invalid action"
exit 1
}
exit 0
|
| ︙ | ︙ |