mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
basename fix thanks to muflax
This commit is contained in:
parent
9c51d99dbb
commit
625d395ab5
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ echo "__all__ = [" >> $init
|
|||
echo "Generating forms.."
|
||||
for i in designer/*.ui
|
||||
do
|
||||
base=$(basename -s.ui $i)
|
||||
base=$(basename $i .ui)
|
||||
py="aqt/forms/${base}.py"
|
||||
echo " \"$base\"," >> $init
|
||||
echo "import $base" >> $temp
|
||||
|
|
Loading…
Reference in a new issue