mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
8 lines
97 B
Bash
Executable file
8 lines
97 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -d 'locale' ]; then
|
|
dir=..
|
|
else
|
|
dir=.
|
|
fi
|
|
(cd $dir && nosetests -vs $@)
|