aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/reset-password.ts4
-rwxr-xr-xscripts/test.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/reset-password.ts b/scripts/reset-password.ts
index 09f27bfa4..5ab7d01e5 100755
--- a/scripts/reset-password.ts
+++ b/scripts/reset-password.ts
@@ -6,14 +6,14 @@ program
6 .option('-u, --user [user]', 'User') 6 .option('-u, --user [user]', 'User')
7 .parse(process.argv) 7 .parse(process.argv)
8 8
9if (program.user === undefined) { 9if (program['user'] === undefined) {
10 console.error('All parameters are mandatory.') 10 console.error('All parameters are mandatory.')
11 process.exit(-1) 11 process.exit(-1)
12} 12}
13 13
14db.init(true) 14db.init(true)
15 .then(() => { 15 .then(() => {
16 return db.User.loadByUsername(program.user) 16 return db.User.loadByUsername(program['user'])
17 }) 17 })
18 .then(user => { 18 .then(user => {
19 if (!user) { 19 if (!user) {
diff --git a/scripts/test.sh b/scripts/test.sh
index 6c6312d52..b193a10bc 100755
--- a/scripts/test.sh
+++ b/scripts/test.sh
@@ -7,4 +7,4 @@ npm test || exit -1
7 7
8cd .. || exit -1 8cd .. || exit -1
9npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1 9npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1
10mocha --bail server/tests 10mocha --require ts-node/register --bail server/tests/index.ts